Examveda
Examveda

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

A. i,am

B. iam

C. i am

D. error

Answer: Option D


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor