A、1001,zhangDa,1098.0
B、1002,chang Rong,1202.0
C、1001,changRong,1098.0
D、1002,Zhang Da,1202.0
A、1,2
B、2,3
C、3,4
D、4,1
A、10,1
B、20,1
C、10,2
D、20,2
A、Qian,f,95,92
B、Qian,m,85,90
C、Zhao,f,95,92
D、Zhao,m,85,90
A、10
B、11
C、20
D、21
A、16
B、23
C、90
A、1001,ZhangDa,1098.0
B、1001,ChangRong,1098.0
C、1001,”ZhangDa”,1098.0
D、1001,”ChangRong”,1098.0
A、1
B、2
C、4
D、5
A、person[i]
B、person[i].name
C、person[i].sex
A、welcome
B、emocle
C、emoclew
D、elcome
A、stu 是结构体变量
B、student 是结构体变量
C、student 是结构体类型
D、a和 b是结构体变量
A、所有成员一直驻留在内存中
B、只有一个成员驻留在内存中
C、部分成员驻留在内存中
D、没有成员驻留在内存中
A、结构体中的成员不能是结构体类型
B、结构体的类型不能是指针类型
C、结构体中成员的名字可以和结构体外其他变量的名称相同
D、在定义结构体类型时就给结构体分配存储空间
A、6
B、8
C、10
D、12
A、(p).data.a
B、(p).a
C、p->
data.a
D、p.data.a
A、(p++)->
num
B、p++
C、(p).num
D、p=stu.age
A、year=1976
B、birthday.year=1976
C、w1.birthday.year=1976
D、w1.year=1976
A、class[0]->
age + class[1]->
age+ class[2]->
age
B、class[1].name[5]
C、person[1].name[5]
D、clase->
name[5]
A、scanf(“%d”,a)
B、scanf(“%d”,student)
C、scanf(“%d”,stu.a)
D、scanf(“%d”,student.a)
A、p=a[0]
B、p=a[1]
C、p=a[2]
D、p=a[3]
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])
A、插入、删除不需要移动元素
B、可随机访问任一元素
C、不必事先估计存储空间
D、所需空间与线性长度成正比
A、q->
next=NULL
p=p->
next
p->
next=q
B、p=p->
next
q->
next=p->
next
p->
next=q
C、p=p->
next
q->
next=p
p->
next=q
D、p=(p).next
(q).next=(p).next
(p).next=q
A、p->
next=s
s->
next=p->
next
B、s->
next=p->
next
p->
next=s
C、p->
next=s
p->
next=s->
next
D、p->
next=s->
next
p->
next=s
A、head==NULL
B、head->
next==NULL
C、head->
next==head
D、head!=NULL