Increment the value of i by 1
1 point
1=i+1
i=I+1
i=i+1
None of the above
Answers
Answered by
0
Answer:
The only difference is the order of operations between the increment of the variable and the value the operator returns. So basically ++i returns the value after it is incremented, while i++ return the value before it is incremente
Similar questions