

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { int num1 = 99; int num2 = sizeof(num1++); printf("num1 is %d", num1); } |
A. | num1 is 97 |
B. | num1 is 98 |
C. | num1 is 99 |
D. | Compilation Error |
E. | None of these |
Answer» D. Compilation Error | |