摘要: 1,#将宏参数字符串化 #include <stdio.h> #define str(x) #x int main(int argc, char *argv[]) { printf("%s",str(helloworld)); return 0; } 输出:helloworld 2,##l连接字符串 阅读全文
posted @ 2022-03-20 11:31 UNkey 阅读(253) 评论(0) 推荐(0)