若structstudent
{intnum;
intage;
}stu[3]={{1001,18},{1002,19},{1003,20}};
则下面语句中引用非法的是()
{intnum;
intage;
}stu[3]={{1001,18},{1002,19},{1003,20}};
则下面语句中引用非法的是()
举一反三
- 以下结构体的定义语句中,正确的是() A: structstudent{intnum;charname[10];intage;};stu; B: struct{intnum;charname[10];intage;}student;structstudentstu; C: structstudent{intnum;charname[10];intage;}stu; D: structstudent{intnum;charname[10];intage;};studentstu;
- 若能使程序运行后的输出结果如下: 201501 则空白处填写的表达式或语句应该是 #include structstudent { intage; charnum[8]; }; intmain() { structstudentstu[3]={{20,"201501"},{21,"201502"},{19,"201503"}}; structstudent*p=stu; ____________________ return0; }
- 以下定义结构体变量的语句中错误的是()。 A: struct{intnum;charname[20];}s; B: structstudent{intnum;charname[20];}s; C: structstudent{intnum;charname[20];};students; D: structstudent{intnum;charname[20];};structstudents;
- 若有以下定义语句:structstudent{intnum,age;};structstudentstu[3]={{101,20},{102,19},{103,18}},*p=stu;则以下错误的引用是()
- 有以下说明和定义语句 structstudent {int age; char num[8];}; structstudentstu[3]={{20,"200401"},{21,"200402"},{19,"200403"}}; structstudent *p=stu; 以下选项中引用结构体变量成员的表达式错误的是______。