今天,看书时看到一个在(c语言中) 字符串创建运算符# ,挺有用的,比如我要创建一个字符串的变量,xxx,而我经常要打印“xxx”,这个字符串创建运算符 就非常有用了,但好像只能在宏定义处用,而不能在函数中用,下面是我写的一个测试的例子。
#include <stdio.h>
#include <string.h>
#define xianshi(name) pr(#name)
void pr(char *x)
{
printf("%s/n",x);
}
int main()
{
// char s[10];
// strcpy(s,#name);
// char x[20] = #name;
// printf("%s",s);
xianshi(MNBBV);
xianshi(fas);
}
运行结果如下:
[root@localhost apue example]# ./#printf.out
MNBBV
fas