设有以下语句: struct stint 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
A: p++->n
B: p->n++
C: (*p).n++
D: ++p->n
举一反三
- 若有以下说明和语句: struct stint n;char *ch;; struct st a[3]=5,"abc",7,"def",9,"ghk",*p=a; 则值为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]={1,&a[1],3,&a[2],5,&a[0]},*p; 如果下述语句的显示是 2,则对p的赋值是( ) printf("%d",++(p->next->n));
- 若有以下说明和语句: struct stint n;char *ch;; struct st a[3]=5,"abc",7,"def",9,"ghk",*p=a; 则值为6的表达式是______。 A: A) p++->n B: B) p->n++ C: C) (*p).n++ D: D) ++p->n
- 值为7的表达式是【 】。 struct st{int n; struct st *next;} struct st a[3]={5,&a [1],7,&a [2],9,NULL}, *p; p=&a[0];
- 有以下程序: main() { int a[3][3],*p,i; p=&a[0][0]; for (i=0;i<9;i++)p[i]=i+1; printf("%d\n",a[1][2]); } 程序运行后的输出结果是[/i] A: 3 B: 6 C: 9 D: 2