What will be the output of the following C code?
#include <stdio.h>
# define max
void m()
{
printf("hi");
}
void main()
{
max;
m();
}
#include <stdio.h>
# define max
void m()
{
printf("hi");
}
void main()
{
max;
m();
}A. Run time error
B. hi hi
C. Nothing
D. hi
Answer: Option D

Join The Discussion