0
How compiler understands prefix and postfix increment ?
If n++ means n = n+1 Then ++n means ______? Give expression
2 Answers
+ 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