题目内容

【单选题】存放100个学生的数据、包括学号、姓名、成绩。在如下的定义中,不正确的是( )。

A. struct student {int sno; char name[20];float score;} stu[100];
B. struct student stu[100] {int sno; char name[20]; float score};
C. struct{ int sno; char name[20];float score;} stu[100];
D. struct student {int sno; char name[20]; float score;}; struct student stu[100];

查看答案
更多问题

【单选题】设有定义语句“struct {int x; int y;} d[2]={{1,3},{2,7}};”则“printf(“%d\n”,d[0].y/d[0].x*d[1].x);”输出的是( )。

A. 0
B. 1
C. 3
D. 6

【单选题】已知: struct sk { int a; float b; }data, *p; 若有p=&data,则对data中的成员a的正确引用是( )。

A. (*p).data.a
B. p->data.a
C. (*p).a
D. p.data.a

【单选题】设有如下定义:struck sk{ int a;float b;}data;int *p;若要使P指向data中的a域,正确的赋值语句是( )。

A. p=&a;
B. p=data.a;
C. p=&data.a;
D. *p=data.a;

【单选题】设有以下说明语句: typedef struct stu { int a; float b; } stutype;则下面叙述中错误的是( )。

A. struct是结构类型的关键字
B. struct stu是用户定义的结构体类型
C. a和b都是结构成员名
D. stutype是用户定义的结构体类型

答案查题题库