题目内容

以下结构体类型说明和变量定义中正确的是( )。

A. typedef struct{int n;char c;}REC;REC t1,t2;
B. struct REC;{int n;char c;};REC t1,t2;
C. typedef struct REC{int n=0;char c='A';}t1,t2;
D. struct{int n;char c;}REC t1,t2;

查看答案
更多问题

已知学生记录描述为:struct date{int year;int month;int day;};struct student{int sID;struct date birth;};struct student s;设变量s所代表的学生生日是“1990年8月16日”,下列对“生日”的正确赋值是:( )。

A. year=1990;month=8;day=16;
B. birth.year=1990;birth.month=8;birth.day=16;
C. s.birth.year=1990;s.birth.month=8;s.birth.day=16;
D. s.year=1990;s.month=8;s.day=16;

#includestruct date{int year;int month;int day;};int main(){struct date today;printf("%d\n",sizeof(struct date));return 0;}

A. 6
B. 8
C. 10
D. 12

根据下面的定义,能打印出字母M的语句是( )。struct p{char name[10];int age;};struct p class[6]={"John",23,"Paul",22,"Mary",20,"Adam",21};

A. printf("%c\n",class[3].name);
B. printf("%c\n",class[3].name[1]);
C. printf("%c\n",class[2].name[1]);
D. printf("%c\n",class[2].name[0]);

下面对typedef的叙述中不正确的是( )。

A. 用typedef可以定义各种类型名,但不能用来定义变量
B. 用typedef可以增加新类型
C. 用typedef只能将已存在的类型用一个新的标识符来代表
D. 使用typedef有利于增强程序的通用性和可移植性

答案查题题库