1.

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

A. Hello how are u?
B. Garbage value
C. Compilation Error
D. Runtime Error
E. None of threse
Answer» D. Runtime Error


Discussion

No Comment Found

Related MCQs