摘要: 1 #include <stdio.h> 2 #include <stdarg.h> 3 /* 方式1 C99宏方式 GNU C扩展 宏方式 */ 4 #define MC_C99_PRINT(fmt,...) printf(fmt, ##__VA_ARGS__) //## 作用:当变参列表为空时, 阅读全文
posted @ 2023-09-06 09:40 云的边界 阅读(242) 评论(0) 推荐(0)