0 votes
by (1.1k points)

1 Answer

0 votes
by (1.1k points)
selected by
 
Best answer
Prefix increment operator means the variable is incremented first and then the expression is evaluated using the new value of the variable.

Prefix decrement operator means the variable is decremented first and then the expression is evaluated using the new value of the variable.
...