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. Undefined behaviour
Answer: Option C

Join The Discussion