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

Join The Discussion