Following is the code including Combination of Token pasting and Stringizing as follows:
#define f(a,b) a##b
#define g(a) #a
#define h(a) g(a)
printf("%s\n",h(f(1,2)));
printf("%s\n",g(f(1,2)));
The output is:
12
f(1,2)
I do not uderstand the difference in ordering in the two expressions.