struct是声明为结构体的关键字,不能省,
在C++中可以,但在c中不行。在c中要稍微改变下也行:typedef struct student { int sno;char name[20];char sex;int age;float score;} student;