Examveda
Examveda

What will be the output of the following C code?
#include<stdio.h>
#define max 100
main()
{
    #ifdef max
    printf("hello");
}

A. 100

B. hello

C. "hello"

D. error

Answer: Option D


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor