Examveda
Examveda

What will be the output of the following C code?
#define display(text) printf(#text "@")
main()
{
    display(hello.);
    display(good morning!);
}

A. hello.@good morning!

B. error

C. hello.good morning!@

D. hello.@good morning!@

Answer: Option D


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor