1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
printf("Hello Interview Mania! %d n", num);
return 0;
}

A. Hello Interview Mania! num
B. Compilation Error
C. Hello Interview Mania!
D. Hello Interview Mania! followed by a garbage value
E. None of these
Answer» C. Hello Interview Mania!


Discussion

No Comment Found

Related MCQs