1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int n = 0;
for (; ; ;)
printf("Hey... n");
printf("Hello... n");
}

A. Hey...
B. Hello...
C. Runtime Error
D. Compilation Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs