1.

What will be the output of the following C code?#include <stdio.h> int main() { void fun(); printf("Interview "); fun(); } void fun() { printf("Mania"); }

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


Discussion

No Comment Found