

MCQOPTIONS
Saved Bookmarks
1. |
What will be the value of "x" after execution ?int x = 0, y = 0 , z = 0 ; x = (++x + y-- ) * z++; |
A. | -2 |
B. | -1 |
C. | 0 |
D. | 1 |
Answer» D. 1 | |