结构体名字是这样命名吗?
struct student{
int math;
int english;
};
student就是名字,后面用的话不是应该student.math[]吗?
int main(){
struct Student stu[50];
stu[20].math=50;
stu[20].english=50;
return 0;
}
里的 struct Student stu[50];是重新命名为stu了吗