Q56
What will be the output of the following C code? #define F abc #define B def #define FB(arg) #arg #define FB1(arg) FB(arg) main() printf(FB(F B)); FB1(F B);
A.
F B
AnswerB.
Error
C.
FB
D.
"FB"
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board