Vidyalelo
C Programming · Q49

Function

Programming · C Programming · question 49

Q49

What will be the output of the following C code? #include #define foo(x, y) #x #y int main() printf("%s ", foo(k, l)); return 0;

A.
kl
Answer
B.
k l
C.
xy
D.
Compile time error

Answer: Option A

Solution

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