假设我有x作为字符串参数的宏#define a(x) "this is x".如果我打电话给a(test),字符串形成应该是"this is test".
#define a(x) "this is x"
a(test)
"this is test"
c macros
c ×1
macros ×1