Examveda
Examveda

What will be the output of the following C code?
#define hello(c,d) #c #d
main()
{
    printf(hello(i,"am"));
}

A. iam

B. i"am"

C. am

D. "am"

Answer: Option B


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor