Examveda
Examveda

What will be the output of the following C code?
#define display(text) "$" #text
main()
{
    printf(display(hello	   world));
}

A. hello world

B. $helloworld

C. $hello world

D. error

Answer: Option C


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor