这些是宏的功能。
#是将一个参数转换为字符串。##可以连接字符串
比如这样:
#include
#define STR(a,b) a##b
int main()
{
printf("%s\n",STR("123","456"));
return 0;
}