What will be the output of the following C code?
#include<stdio.h>
#define max 100
main()
{
#ifdef max
printf("hello");
}
#include<stdio.h>
#define max 100
main()
{
#ifdef max
printf("hello");
}
A. 100
B. hello
C. "hello"
D. error
Answer: Option D
Join The Discussion