MCQOPTIONS
Saved Bookmarks
| 1. |
What would be the output of the following code? #include <stdio.h> int main() { int x = 4, y, z; y = --x; z = x--; printf("%d%d%d", x, y, z); return 0; } |
| A. | 233 |
| B. | 223 |
| C. | 323 |
| D. | 322 |
| Answer» B. 223 | |