1.

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

A. 200
B. 100
C. Compilation Error
D. Runtime Error
E. None of these
Answer» B. 100


Discussion

No Comment Found

Related MCQs