1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
int n = fun();
printf("%d", n);
}
void fun()
{
printf("Welcome ");
}

A. 8
B. Welcome
C. Welcome 8
D. Compilation Error
E. None of these
Answer» D. Compilation Error


Discussion

No Comment Found

Related MCQs