What will be the output of the following C code?
#include<stdio.h>
#define max 100
void main()
{
#if(max%10)
printf("Exam");
#endif
printf("Veda");
}
#include<stdio.h>
#define max 100
void main()
{
#if(max%10)
printf("Exam");
#endif
printf("Veda");
}A. error
B. Exam
C. Veda
D. ExamVeda
Answer: Option C

Join The Discussion