Q. int x = 0, y = 0 , z = 0 ;
x = (++x + y-- ) * z++;
What will be the value of "x" after execution ?
x = (++x + y-- ) * z++;
What will be the value of "x" after execution ?
β
Correct Answer: (C)
0