#include <stdio.h>
#define foo(x, y) #x #y
int main()
{
printf("%s\n", foo(k, l));
return 0;
}
Output:
kl
I know that ## does concatenation. From the output it seems that #
also does concatenation.
Am I correct?
If I am correct then what is the difference between ##
operator and #
operator?