摘要: 1.为什么这样定义编译时候会报错:error: multiple storage classes in declaration specifiers typedef static int INT32 百度搜到的答案:typedef是存储类的关键字,和auto、static、register一样是存储 阅读全文
posted @ 2020-04-09 20:08 唯一诺 阅读(1089) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdarg.h> typedef struct STest { char num; }stest_st, *stest_pst; int main(int argn ,char *argv[]) { const int iNum = 10; 阅读全文
posted @ 2020-04-09 19:36 唯一诺 阅读(333) 评论(0) 推荐(0)