Examveda
Examveda

What will be the output of the following C code?
#include<stdio.h>
void main()
{
    #ifndef max
    printf("hello");
    #endif
    printf("hi");
}

A. hello

B. hellohi

C. error

D. hi

Answer: Option B


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor