C macro: The # operator 1. The # operator2. Stringizing (字符串化)References 1. The # operator
The # (single number sign) operator converts a parameter of a function-like macro into a character string literal.
#define STR(x) #xAll subsequent invocations …