

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the program? #include int main() { int x=4, y, z; y = --x; z = x--; printf("%d, %d, %d\n", x, y, z); return 0; } |
A. | 4, 3, 3 |
B. | 4, 3, 2 |
C. | 3, 3, 2 |
D. | 2, 3, 3 |
Answer» E. | |