Vidyalelo
C Programming · Q141

Function

Programming · C Programming · question 141

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
Answer

Answer: Option D

Solution

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