C语言结构体解析1 小序2 用例3 结构体变量和指向结构体的指针作函数参数4 总结
1 小序不同数据类型数据的集合;结构:struct 结构体名{成员列表};声明方法:1.0 先声明结构体类型后定义结构体变量struct student { int num; char name[20]; char sex; int age; float score; char addr[30];};struct student student1, student2;...