摘要: 预编译指令的作用域:从编写指令的那一行开始,一直到文件结尾 宏名一般用大写 或K开头其他小写 #define name 23 //局部宏只对下文有效 printf("%d",nameString);//错误❌ int arr[name]={23,23,4,34}; #undef name print 阅读全文
posted @ 2016-03-08 17:07 谢小锋 阅读(171) 评论(0) 推荐(0) 编辑