Q141
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
D.
m ## n
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board