网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

有以下说明和定义语句struct student{ int age; char num[8];};struct student stu[3]={{20,"200401"},{21,"200402"},{10\9,"200403"}};struct student *p=stu;以下选项中引用结构体变量成员的表达式错误的是A.(p++)->num B.p->num C.(*p).num D.stu[3].age


参考答案

更多 “ 有以下说明和定义语句struct student{ int age; char num[8];};struct student stu[3]={{20,"200401"},{21,"200402"},{10\9,"200403"}};struct student *p=stu;以下选项中引用结构体变量成员的表达式错误的是A.(p++)-num B.p-num C.(*p).num D.stu[3].age ” 相关考题
考题 struct{int num;float scor;}student;struct student std1;是对结构体类型的变量student的定义。() 此题为判断题(对,错)。

考题 阅读下列XML文档,回答问题1至问题4,将解答填入对应栏内。【XML文档】<? Xml version= "1.0" encoding=" GB2312 "?><!—以下是文档的主体部分→<college><title>希赛教育</title><head>软考培训部</Head><Stu_Num unit="人">2</Stu_Num><Student><Name>张网管</Name><Age>21 </Age><Sex>男</Sex><Class>软考2班</Class></Student><Student><Name>李软设</Name><Age>20</Age><Sex>女</Sex><Class>软考3班</Class></Student></College>与HTML相比,XML具有哪些特点?

考题 有以下说明和定义语句:struct student{int age; char num[8] ;};struct student stu [3] = { { 20, "200401" } , {21, "200402" } , {19, "200403" } };stract student * p = stu;以下选项中引用结构体变量成员的表达错误的是( )。A.(p++) ->numB.p- >numC.( *p).numD.stu[3].age

考题 有以下的结构体变量定义语句: struct student { int num; charname[9]; } stu; 则下列叙述中错误的是()。A.结构体类型名为stuB.num是结构体成员名C.struct是C的关键字D.结构体名为student

考题 【单选题】以下结构体的定义语句中,正确的是______。A.struct student {intnum; char name[10];int age;};stu;B.struct {int num;char name[10];int age;}student; struct studentstu;C.struct student {int num; char name[10];int age;}stu;D.struct student {int num; char name[10]; int age;}; student stu;

考题 以下哪个定义不会分配实际的存储空间?A.struct { char name[10] ; int age ; } student ;B.struct STUDENT { char name[10] ; int age ; } student ;C.struct STUDENT { char name[10] ; int age ; } ; struct STUDENT student;D.struct STUDENT { char name[10] ; int age ; } ;

考题 有以下的结构体变量定义语句: struct student { int num; charname[9]; } stu; 则下列叙述中错误的是()。A.结构体类型名为stuB.num是结构体成员名C.struct是C的关键字D.结构体类型名为student

考题 以下()定义不会分配实际的存储空间。A.struct { char name[10] ; int age ; } student ;B.struct STUDENT { char name[10] ; int age ; } student ;C.struct STUDENT { char name[10] ; int age ; } ; struct STUDENT student;D.struct STUDENT { char name[10] ; int age ; } ;

考题 有以下说明和定义语句,则下列选项中引用结构变量成员的表达式中错误的是()。 struct student { int age; char num[8]; }; struct student stu[3] = {{20, "200401"},{21, "200402"},{19, "200403"}};A.stu[0].ageB.stu[2].numC.stu[1].numD.stu[3].age

考题 以下结构体的定义语句中,正确的是______。A.struct student {int num; char name[10];int age;};stu;B.struct {int num; char name[10];int age;}student; struct student stu;C.struct student {int num; char name[10];int age;}stu;D.struct student {int num; char name[10]; int age;}; student stu;