#define show(name) showword(#name)
void showword(const char *s)
{
printf("%s\n");
}
int main()
{
show(ABC);
return 0;
}
结果:ABC
运算符的作用是将ABC变为了"ABC",并以此为参数传给showword函数,这个运算符只能在宏定义中使用
本文共 233 字,大约阅读时间需要 1 分钟。
#define show(name) showword(#name)
void showword(const char *s)
{
printf("%s\n");
}
int main()
{
show(ABC);
return 0;
}
结果:ABC
运算符的作用是将ABC变为了"ABC",并以此为参数传给showword函数,这个运算符只能在宏定义中使用
转载于:https://www.cnblogs.com/johnsblog/p/3959883.html