还是搞不懂结构体变量能干啥
结构体(Struct)可以用来存放一组不同类型的数据,
例如学生信息包括:姓名;性别;成绩;年龄等int或char等等类型的数据!
struct student { char name[20]; char sex; float score;int age; }