Please hepl me to find answer
Attachments:
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
Social Sciences,
2 months ago
World Languages,
2 months ago
Social Sciences,
2 months ago
Math,
4 months ago
Math,
11 months ago