What will be the output of the following C code snippet?
#include (stdio.h)
void main()
{
printf("hello");
}
#include (stdio.h)
void main()
{
printf("hello");
}A. hello
B. Nothing
C. Compile time error
D. Depends on compiler
Answer: Option C

Join The Discussion