1.

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

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


Discussion

No Comment Found

Related MCQs