设有以下程序段:struct st{int n;struct st *next;};static struct st a[3]={5,&a[1],7,&a[2],9,'\0'),*p;p=&a[0];下面选项中,其值为6的表达式为______。
A.P++->n
B.p->n++
C.(*p).n++
D.++p->n
第1题:
设有以下程序: struct st{int n;struct st*next;}; static struct st a[3]={5,&a[1],7,&a[2],9,'\0\},*p; p=&a[0];下面其值为6的表达式为______。
A.p++->n
B.p->n++
C.(*p).n++
D.++p->n
第2题:
设有下列语句: ()表达式的值为7. struct st {int n; struct st *next;}; static struct st a[3]={ 5,&a[1], 7,&a[2], 9,NULL}, *p; p=&a[0];
A.p->n++
B.(p)->n
C.(*p).n++
D.p++->n
第3题:
设有以下语句,则以下表达式的值为6的是: struct st { int n; struct st *next; }; static struct st a[3]={5,&a[1],7,&a[2],9,'0'},*p; p=&a[0];
A.p++->n
B.p->n++
C.(*p).n++
D.++p->n
第4题:
设有下列语句: ()表达式的值为6. struct st {int n; struct st *next;}; static struct st a[3]={ 5,&a[1], 7,&a[2], 9,NULL}, *p; p=&a[0];
A.++p->n
B.(p)->n
C.(*p).n++
D.p++->n
第5题:
设有以下说明和定义语句 struct st { int n; struct st *next; }; static struct st a[3]={5,&a[1],7,&a[2],9,'0'},*p; p=&a[0]; 则以下表达式的值为6的是________。
A.p++->n
B.p->n++
C.++p->n
D.(*p).n++