摘要: C语言基础知识回顾 一、结构体类型 定义:用系统已有的不同基本数据类型或者用户自定义的结构型组合成的用户需要的复杂数据类型。 struct Student { int num; char name[20]; int age; float score; } struct Student s1,s2; 阅读全文
posted @ 2021-07-27 20:04 梁君牧 阅读(221) 评论(0) 推荐(0) 编辑