Please hepl me to find answer
Attachments:
![](https://hi-static.z-dn.net/files/d05/7d60df31822b6585fac3cc4fe0451838.jpg)
Answers
Answered by
0
Answer:
sorry I don't know the answer
Answered by
1
Both increment the number, but ++i increments the number before the current expression is evaluated, whereas i++ increments the number after the expression is evaluated. Example: int i = 1; int x = i++; //x is 1, i is 2 int y = ++i; //y is 3, i is 3
Similar questions