2020年5月8日
摘要: 一、结构体 ① #include "stdio.h" #include "string.h" //1.声明一个结构体类型 struct student { int id; char name; }; //注意此处的分号,因为这是一条语句 struct student stu; //2.给struct 阅读全文
posted @ 2020-05-08 16:12 轨迹1995 阅读(550) 评论(0) 推荐(0) 编辑