MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include <stdio.h> int main() { int x = 2, y = 0; int z = (y++) ? 2 : y == 1 && x; printf("%d\n", z); return 0; } |
| A. | 0 |
| B. | 1 |
| C. | 2 |
| D. | Undefined behaviour |
| Answer» C. 2 | |