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

Join The Discussion