MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int n = 12; int num = 2 == 3 && n++; printf("%d %d", num, n); } |
| A. | 12 |
| B. | 2 |
| C. | 3 |
| D. | 0 12 |
| E. | 12 0 |
| Answer» E. 12 0 | |