C语言宏替换实例 C语言带参数的宏 C语言使用##运算符 C语言宏替换实例 /* subst.c -- substitute in string */ #include <stdio.h> #define PSQR(x) printf("The square of " #x " is %d.\n",((x)*(x))) int main(void) { int y = 5; PSQR(y); PSQR(2 + 4); return 0; } C语言带参数的宏 C语言使用##运算符