1.

What will be the output of the following C code?
 #include <stdio.h>
int main()
{
printf("%d", num++);
}
int num = 15;

A. 15
B. Garbage value
C. Runtime Error
D. Compilation Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs