设有以下语句: 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的为______。

admin2009-02-15  22

问题 设有以下语句:    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/BuXp777K
0

最新回复(0)