Macro Preprocessor C

#include 
#define JOIN(a, b) a ## b
int main(void)
{
  printf(JOIN("one ", "two"));
  return 0;
}