Q222
What will be the output of the following C code? #include #define foo(m, n) m ## n int main() printf("%s ", foo(k, l));
A.
k l
B.
kl
C.
Compile time error
AnswerD.
Undefined behaviour
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board