Computer Science, asked by nitinmala1980, 7 months ago

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 shivaramcvm
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