网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

设有以下程序段: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


参考答案

更多 “ 设有以下程序段: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++->nB.p->n++C.(*p).n++D.++p->n ” 相关考题
考题 若有以下程序段: struct st {int n; int*m: }; int a=2,b=3,c=5; struct st s[3]=({101,a},{102,c},{103,B)}; main() {struct st*p; p=s; } 则以下表达式中值为5的是( )。A.(*p).mB.*(p+1)->mC.*(p++)->nD.(p++)(*m)

考题 设有以下程序: struct st{int n;struct st *next;}; static struct st a[3]={5,a[1],7,struct st *next;}; static struct st a[3]={5,a[1],7,a[2],9,'\0'},*p; p=a [0]; 下面选项中,表达式值为6的是______。A.p++->nB.p->n++C.(*p).n++D.++p->n

考题 设有以下语句 ( ) 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+ + ->nB.p->n + +C.(* P). n+ +D.+ +p - >n

考题 设有以下语句: 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++->nB.p->n++C.(*p).n++D.++p->n

考题 设有以下程序: 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++->nB.p->n++C.(*p).n++D.++p->n

考题 设有下列语句: ()表达式的值为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->nB.(p)->nC.(*p).n++D.p++->n

考题 设有下列语句: ()表达式的值为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)->nC.(*p).n++D.p++->n

考题 设有以下说明和定义语句 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++->nB.p->n++C.++p->nD.(*p).n++

考题 设有以下语句,则以下表达式的值为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++->nB.p->n++C.(*p).n++D.++p->n