Examveda
Examveda

What will be the output of the following C code?
#define HELLO(a) #a
main()
{
    printf(HELLO(good        morning)); 
}

A. good morning

B. goodmorning

C. good morning

D. error

Answer: Option C


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor