你要把他俩写成字符串才可以不加引号的话,这俩是变量
#include <stdio.h> #define V(a,b) a b int main() { printf("%s", V("aaa","bbb")); return 0; }
结果为aaabbb