...
Code Block |
---|
#define JOIN(a, b) (a ## b) #define SHOW(a) printf(#a "" = %d\n"", a) |
See PRE05-C. Understand macro replacement when concatenating tokens or performing stringification for more information on using the ##
operator to concatenate tokens.
...