有以下结构体说明和变量的定义,且指针p指向变量a,指针q指向变量b。则不能把结点b连接到结点a之后的语句是( )。 struct node {chardata; struct node if next; }a,b,*p:&a,*q=&b;
A.a.next=q;
B.p.next=&b;
C.p->next=&b:
D.(*p).next=q;
第1题:
有以下结构体说明和变量的定义,且指针p指向变量a,指针q指向变量b。则不能把结点b连接到结点a之后的语句是()。struct node{ char data; struct node *next; } a,b,*p=&a,*q=&b;
A.next=q;
B.p.next=&b;
C.p->next=&b;
D.(*p).next=q;
第2题:
有以下结构体说明和变量的定义,且指针p指向变量a,指针q指向变量b,则不能把结点b连接到结点a之后的语句是: struct node { char data; struct node *next; } a,b,*p=&a,*q=&b;
A.next=q;
B.p.next=&b;
C.p->next=&b;
D.(*p).next=q;
第3题:
3、有以下结构体说明和变量的定义,且指针p指向变量a,指针q指向变量b,则不能把结点b连接到结点a之后的语句是: struct node { char data; struct node *next; } a,b,*p=&a,*q=&b;
A.next=q;
B.p.next=&b;
C.p->next=&b;
D.(*p).next=q;
第4题:
有以下结构体说明和变量的定义,且指针p指向变量a,指针q指向变量b,则不能把结点b连接到结点a之后的语句是()。 struct node { char data; struct node *next; } a,b,*p=&a,*q=&b;
A.next=q;
B.p.next=&b;
C.p->next=&b;
D.(*p).next=q;
第5题:
有以下结构体说明和变量的定义,指针p指向变量a,指针q指向变量b,则不能把结点b连接到结点a之后的语句是()。 struct node { char data; struct node *next; }a,b,*p=&a,*q=&b;
A.next=q;
B.p.next=&b;
C.p->next=&b;
D.(*p).next=q;
第6题:
有以下结构体说明和变量的定义,且指针p指向变量a,指针q指向变量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;
第7题:
有以下结构体说明和变量的定义,且指针P指向变量a,指针q指向变量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;
第8题:
有以下结构体说明和变量的定义,且如下图所示指针p指向变量a,指针q指向变量b。则不能把结点 b连接到结点a之后的语句是( ) struct node { char data; struct noe *next; }a,b, *p=&a, *q=&b;
A.a,next=q;
B.p.next=&b;
C.p->next=&b;
D.(*p).next=q;
第9题:
有以下结构体说明和变量的定义,且指针p指向变量a,指针q指向变量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;