0
How compiler understands prefix and postfix increment ?
If n++ means n = n+1 Then ++n means ______? Give expression
2 odpowiedzi
+ 3
b=a++; // equal b=а; a=a+1;
b=++a; // equal а=а+1; b=а;
0
It's good answer according to the assignment increment Operation.
But what about simply:
n++
++n