摘要: 一、可变宏 1.# 可以接收一个参数,并把这个参数按照原来的字符串源码原样传给宏内部; 1 #define RR(x) printf(#x"\n"); 2 int main(){ 3 int a = 1; 4 RR(1); 5 RR(a); 6 return 0; 7 } 输出: 1 a 解释:#x 阅读全文
posted @ 2019-12-04 19:43 chiwin 阅读(257) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u012308586/article/details/95746745 阅读全文
posted @ 2019-12-04 10:45 chiwin 阅读(107) 评论(0) 推荐(0) 编辑