1.

What will be the output of the following C code?
#include <stdio.h<
int n;
void main()
{
if (n)
printf("Hey");
else
printf("How are u?");
}

A. Compilation Error
B. Hey
C. How are u?
D. Runtime Error
E. None of these
Answer» D. Runtime Error


Discussion

No Comment Found

Related MCQs