++p->n的优先级是先取出p指向的结构体中的n值,再对n加一,p指向结构体数组的首元素,p->n = 5,然后5+1 = 6;
答案为什么选B?设有以下程序段,则值为6的表达式是( ).struct st{ int n; struct st *ne
1个回答
相关问题
-
c语言试题 急 1、若有以下程序段,则值为6的表达式是〈〉struct st{int n;struct st next;
-
请把我分析一下这个程序,struct st {int n; struct st *next;};static struc
-
文件 DoubleList.htypedef struct DulNode{ int data; struct DulN
-
c语言的问题对于以下的变量定义,表达式______是不正确的。 struct node { int j, k; } x,
-
设有定义语句“struct {int a;float b;char c;}abc,*p;”,则对结构体成员a的引用可以是
-
对于以下结构定义:struct { int len; char *str;}*p;(*p)->str++中的++加在__
-
#include struct student { long num; char name[10]; int age;
-
c语言设计有以下语句,下面描述中正确的是_____。typedef struct S{ int g; char h;}
-
设有定义:“int x,y,z,t; ”,则执行下列程序段后,变量t的值为?
-
设有int x=1,y=1;则条件表达式(x--*x++!='y'?10-6 :y )的值为?.