Q. What will be the value of "x" after execution ?
Code:
int x = 0, y = 0 , z = 0 ; x = (++x + y-- ) * z++;
β
Correct Answer: (C)
0
int x = 0, y = 0 , z = 0 ; x = (++x + y-- ) * z++;
You must be Logged in to update hint/solution