Examveda
Examveda

What will be the output of the following C code?
#define display(a) #a
main()
{
    printf(display("56#7"));
}

A. Error

B. "56#7"

C. 56#7

D. 567

Answer: Option B


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor