Blog Desk       February 10, 2020      860

What is the correct way to add 1 to the $count variable?

  1. count++;
  2. ++count
  3. $count++;
  4. $count =+1

The Right Answer is : Option C

Explanation