• 2022-06-08 问题

    已定义结构体如下,则能正确定义包含30名学生的结构体数组的是() A: structstudents[30]; B: structstu[30]; C: structs[30]stu; D: structstustudent[30];

    已定义结构体如下,则能正确定义包含30名学生的结构体数组的是() A: structstudents[30]; B: structstu[30]; C: structs[30]stu; D: structstustudent[30];

  • 2022-06-08 问题

    以下定义结构体变量的语句中错误的是()。 A: struct{intnum;charname[20];}s; B: structstudent{intnum;charname[20];}s; C: structstudent{intnum;charname[20];};students; D: structstudent{intnum;charname[20];};structstudents;

    以下定义结构体变量的语句中错误的是()。 A: struct{intnum;charname[20];}s; B: structstudent{intnum;charname[20];}s; C: structstudent{intnum;charname[20];};students; D: structstudent{intnum;charname[20];};structstudents;

  • 2022-06-14 问题

    中国大学MOOC: 已知学生记录描述如下,设变量s中的“生日”应是“1984年11月11日”,下列对生日的正确赋值方式是( )。structstudent{intno;charname[20];charset;struct{intyear;intmonth;intday;}birth;};structstudents;

    中国大学MOOC: 已知学生记录描述如下,设变量s中的“生日”应是“1984年11月11日”,下列对生日的正确赋值方式是( )。structstudent{intno;charname[20];charset;struct{intyear;intmonth;intday;}birth;};structstudents;

  • 2022-06-14 问题

    已知学生记录描述为:structstudent{intno;charname[20],sex;struct{intyear,month,day;}birth;};structstudents;设变量s中的“生日”是“1984年11月12日”,对“birth”正确赋值的程序段是()。 A: year=1984;month=11;day=12; B: s.year=1984;s.month=11;s.day=12; C: birth.year=1984;birth.month=11;birth.day=12; D: s.birth.year=1984;s.birth.month=11;s.birth.day=12;

    已知学生记录描述为:structstudent{intno;charname[20],sex;struct{intyear,month,day;}birth;};structstudents;设变量s中的“生日”是“1984年11月12日”,对“birth”正确赋值的程序段是()。 A: year=1984;month=11;day=12; B: s.year=1984;s.month=11;s.day=12; C: birth.year=1984;birth.month=11;birth.day=12; D: s.birth.year=1984;s.birth.month=11;s.birth.day=12;

  • 1