最佳答案
#define STR1 "s"
#define STR2 "1"
#define STR3 STR1 ## STR2
Is it possible to concatenate STR1
and STR2
, to "s1"
?
You can do this by passing args to another Macro function. But is there a direct way?