设有以下程序: struct st{int n;struct st *next;}; static struct st a[3]={5,&a[1],7,&a[2],9,’\0’},*p; p=&a [0]; 下面选项

admin2013-06-11  37

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

答案8

解析
转载请注明原文地址:https://kaotiyun.com/show/6yJp777K
0

最新回复(0)