1.

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

A. Interview Mania
B. Hello Interview Mania!
C. Compilation Error
D. Runtime Error
E. None of these
Answer» D. Runtime Error


Discussion

No Comment Found

Related MCQs