

MCQOPTIONS
Saved Bookmarks
1. |
What will be the values of x, y and z after execution of the following statements?int x, y, z; x=9; y=10; z=++x=y++; |
A. | z=21, x=11, y=11 |
B. | z=20, x=10, y=11 |
C. | z=21, x=11, y=10 |
D. | z=20, x=10, y=10 |
Answer» C. z=21, x=11, y=10 | |