1.

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

A. Garbage value
B. Welcome
C. Compilation Error
D. Nothing
E. None of these
Answer» C. Compilation Error


Discussion

No Comment Found

Related MCQs