对于如下的定义: struct node{char data;node*next;} a,b,*p=&a,*q=&b;则不能把结点b连接到结点a之后的语句是A. p. next=&bB. ( * p).next=q:C. p->next=&bD. a.next=q
A. p. next=&b 语法错误,p是指针,要用->