执行下列程序的输出结果是_______。struct st{ int x;int *y;} *p;int dt[4]={10,20,30,40};struct st aa[4]={50,&dt[0],60,&dt[1],70,&dt[2],80,&dt[3]};main( ){ p=aa;printf(“%d ”,++p->x);printf(“%d”,(++p)->x);}
下面程序输出结果是_______。struct str{float x;char *y;}*m;struct str group[3]={95.0,"Li",82.5,"Wang",73.5,"Sun"};main(){ m=group; printf("%.1f,%s\n",m->x,m->y);}