What will be the output of the following C code?
#include <stdio.h>
void main()
{
#define max 37
printf("%d", max);
}
#include <stdio.h>
void main()
{
#define max 37
printf("%d", max);
}A. 37
B. Run time error
C. Varies
D. Depends on compiler
Answer: Option A

Join The Discussion