Vidyalelo
C Programming · Q61

C Preprocessor

Programming · C Programming · question 61

Q61

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

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board