结构体、共用体和用户定义类型

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

结构体、共用体和用户定义类型

一、选择题

1、若要说明一个类型名CHARP,使得定义语句“CHARP s;”等价于“char *s;”,以下选项中正确的是______。

A) typedef CHARP char*s;B) typedef * char CHARP;

C) typedef CHARP *char:D) typedef char*CHARP;

2、下列程序的输出结果是______。

struct abc

{ int a,b,c;};

main ()

{ struct abc s[2]={{1,2,3},{4,5,6}};

int t;t=s[0].a+s[1].b;

printf("%d\n",t);

}

A) 5 B) 6 C) 7 D) 8

3、有以下结构体说明和变量的定义,且如图14-4所示的指针p指向变量a,

b。则不能把结点b连接到结点a之后的语句是______。

struct node

{ char data;

struct node * next;

}a,b,*p=&a,*q=&b:

A) a.next=q;B) p.next=&b;C) p->next=&b;D) (*p).next=q;

4、有以下说明和定义语句

struct student

{ int age;char num[8];};

struct student stu[3]={{20,"200401"},{21,"200402"},(19,"200403"}};

struct student*p=stu;

以下选项中引用结构体变量成员的表达式错误的是______。

A) (p++)->num B) p->num C) (*p).num D)

stu[3].age

5、以下程序的输出结果是______。

main()

{ union { char i[2];int k;} r;

r.i[0]=2;r.i[1]=0;

printf("%d\n"r.k);

}

A) 2 B) 1 C) 0 D) 不确定

6、以下叙述错误的是______。

A) 共用体的所有变量都有一个相同的地址

B) 结构体变量可以作为共有用体中的成员

C) 共用体的成员一个时刻只有一个生效

D) 要传递共用体的成员通常采用函数

7、以下程序的输出结果是______。

main()

{

union

{

int i[2];

long j;

char m[4];

}r,*s=&r;

s->i[0]=0x409;

s->i[1]=0x407;

printf("%d\n",s->m[0]);

}

A) 9 B) 49 C) 7 D) 47

8、若有以下说明和定义

union dt

{ int a;char b;double c;} data;

以下叙述中,错误的是______。

A) data的每个成员起始地址都相同

B) 变量data所占的内存字节数与成员c所占字节数相等

C) 程序段:data.a=5;printf("%f\n",data.c);输出结果为5.000000

D) data可以作为函数的实参

二、填空题

1、有以下定义和语句,则sizeof(a)的值是______,而sizeof(a.share)的值是______。

struct date{int day;

int month;

int year;

union

{ int share 1;

float share2;

} share;

}a;

2、以下函数creat用来建立一个带头结点的单向链表,新产生的结点总是插在链表的末尾。单向链表的头指针作为函数值返回。请填空。

#include <stdio.h>

struct list

{ char dara;

struct list *next;

};

struct list *creat()

{ struct list *h,*p,*q;

char ch;

h= (struct list (*) malloc (sizeof (struct list));

______;

ch=getchar();

while(ch!='?')

{ p=(struct list*) malloc) sizeof (struct list));

p->data=ch;

______;

q=p;

ch=getchar();

}

p->next='\0';

______:

}

答案:

一、选择题

1、D

2、B

3、B

4、D

5、A

6、C

7、

A 8、C

二、填空题

1、10,4

2、p=q=h,q->next=p,return(h)或return h

相关文档
最新文档