结构体数组的用法小结
原文章链接(写的相当详细)http://c.biancheng.net/cpp/biancheng/view/172.html1.结构体的作用:结构体是用来存储多个数据变量时用到的,通过结构体可以实现数据变量在全局范围内的所有函数中的使用。//例如我们声明结构体类型Student,用来存储一个学生各种各样的数据struct Student { int num; char name[20]; char sex; int age; float score;