Examveda
Examveda

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");
}

A. error

B. Exam

C. Veda

D. ExamVeda

Answer: Option C


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor