摘要: 一、c中结构体定义方式: 1 struct Stu{ char name[10]; int age; //... }; struct Stu student; //OK 创建了一个Stu类型的变量student Stu student1 //error 未定义标识符 2 typedef struct 阅读全文
posted @ 2020-01-29 23:11 Jaywhenxiang 阅读(368) 评论(0) 推荐(1) 编辑