What will be the values of x after execution of the following statements?
int x=9, y=10;
x=++x - x++ - y++ + y;
Answers
Answered by
0
10. ++x is prefix. x++ is postfix. In the case of y =++x , y will become (x+1), x will ... int a=10; int b=++a; /*new value of a will be assigned to b after ... you can get different value of c in different c compiler in following
Similar questions