1.

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

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


Discussion

No Comment Found

Related MCQs