Vidyalelo
C Programming · Q56

C Preprocessor

Programming · C Programming · question 56

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
Answer
B.
Error
C.
FB
D.
"FB"

Answer: Option A

Solution

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