结构体struct计算机编程C语言
一 结构体 结构体的定义struct student //定义结构提名{char name[10]; //成员列表(包括成员类型,和成员名)int age ;int num;float sco
结构体struct计算机编程C语言