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