What will be the output of the following C code?
#include<stdio.h>
void main()
{
#ifndef max
printf("hello");
#endif
printf("hi");
}
#include<stdio.h>
void main()
{
#ifndef max
printf("hello");
#endif
printf("hi");
}A. hello
B. hellohi
C. error
D. hi
Answer: Option B

Join The Discussion