1.

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

A. Depends on the compiler
B. Garbage value
C. Compilation Error
D. Hello...
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs