Vidyalelo
C Programming · Q222

Function

Programming · C Programming · question 222

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
Answer
D.
Undefined behaviour

Answer: Option C

Solution

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