The statement i++; is equivalent to
-
i = i + i;
-
i = i - 1;
-
i = i + 1;
-
i --;
C
Correct answer
Explanation
The statement i++ is the postfix increment operator, which increments i by 1. It is equivalent to i = i + 1. Option A doubles the value, option B decrements, and option D is the decrement operator.