Computer Science, asked by advaitapanchal, 22 days ago

Please hepl me to find answer​

Attachments:

Answers

Answered by ichha115
0

Answer:

sorry I don't know the answer

Answered by wholamvss
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