已知教师记录描述为structteather{intid;struct{inty;intm;intd;}birth;}t;将变量t中的d成员赋值为12的语句为。
已知教师记录描述为structteather{intid;struct{inty;intm;intd;}birth;}t;将变量t中的d成员赋值为12的语句为。
structstudent//struct结构student 结构名{intid;// 成员1学号charname[20];//成员2姓名char sex;//成员3性别intage;// 成员4年龄floatscore;// 成员3成绩};//结束定义结构struct studentstud1={01,"zhang",'f',18,80.5};struct student stud2={02,"liu",'m',19,96};stud1.id 是(1)stud2.age 是(2)stud2.name[2]是(3)修改第一个学生的成绩为99,对(4)=99
structstudent//struct结构student 结构名{intid;// 成员1学号charname[20];//成员2姓名char sex;//成员3性别intage;// 成员4年龄floatscore;// 成员3成绩};//结束定义结构struct studentstud1={01,"zhang",'f',18,80.5};struct student stud2={02,"liu",'m',19,96};stud1.id 是(1)stud2.age 是(2)stud2.name[2]是(3)修改第一个学生的成绩为99,对(4)=99
1