结构体 成员 是数组类型的成员 赋值的问题
struct student {
int num;
char *name;
int score[5];
}stu[9];
我要给每个学生人成绩赋值,有6门课的成绩~!
要用scanf输入~!键盘输入,不要直接在程序里赋值`!
不要告诉我是scanf("%d%d%d%d%d%d",struct.score[0],struct.score[1],struct.score[2],struct.score[3],struct.score[4],struct.score[5]);
这样太麻烦了~!我觉得!