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. Compile time error
C. Varies
D. Depends on compiler
Answer: Option B

Join The Discussion