Q221
Open questionWhat will be the output of the following C code?
#include <stdio.h>
# define max
void m()
{
printf("hi");
}
void main()
{
max;
m();
}Select an option to see the answer and solution.