#includestructord{intx,y;}dt[2]={1,2,3,4};voidmain(){structord*p=dt;printf("%d,",++P->x);printf("%d,",++P->y);}程序的运行结果是().
A: 1,2
B: 2,3
C: 3,4
D: 4,1
A: 1,2
B: 2,3
C: 3,4
D: 4,1
举一反三
- 下面程序的输出结果为()structst{intx;int*y;}*p;intdt[4]={10,20,30,40};structstaa[4]={50,&dt[0],60,&dt[1],70,&dt[2],80,&dt[3]};main(){p=aa;printf("%d",++p->x);printf("%d",(++p)->x);printf("%d",++(*p->y));}
- 以下程序的运行结果是() #include[stdio.h] structord { intx,y; }dt[2]={1,2,3,4}; main() { structord*p=dt; printf("%d ",++p->x); printf("%d\n",++p->y); } A: 12 B: 23 C: 34 D: 41
- 有下列程序: #include<stdio.h> struct ord int x,y;)dt[2]=1,2,3,4; main() struct ord*p=dt; printf("%d,",++p->x);printf("%d,",++p->y); 程序的运行结果是( )。 A: 1,2 B: 2,3 C: 3,4 D: 4,1
- 以下程序输出结果是____。struct student{short int x ; short int *y;} *p ;short int dt[4]={ 10 , 20 , 30 , 40 };struct student a[4]={50,&dt[0],60,&dt[1],70 ,&dt[2],80,&dt[3]} ;...p=a;printf("%d ",++p->x); printf("%d ",(++p)->x); printf("%d\n",++(*p->y)); }
- 以下程序的输出结果是( )。 {int x;int*y;}*p; int dt[4]={1,2,3,4}; struct st aa[4]={2,&dt[0],3,&dt[0],4,&dt[0],5,&dt[0],}; {p=aa; pfintf("%d\n",++(p->x)); } A: 1 B: 2 C: 3 D: 4