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