What will be the output of the following C code?
#include <stdio.h>
#define foo(m, n) " m ## n "
int main()
{
printf("%s\n", foo(k, l));
}
#include <stdio.h>
#define foo(m, n) " m ## n "
int main()
{
printf("%s\n", foo(k, l));
}A. k l
B. kl
C. Compile time error
D. m ## n
Answer: Option D

Join The Discussion