以下程序的输出是()。
struct st
{ int x; int *y;} *p;
int dt[4]={ 10,20
分类: 2019江中知识赛B(看题模式)发布时间: 2023-12-01 12:13浏览量: 0
以下程序的输出是()。
struct st
{ int x; int *y;} *p;
int dt[4]={ 10,20,30,40 };
struct st aa[4]={ 50,&dt[0],60,&dt[0],60,&dt[0],60,&dt[0],};
main()
{ p=aa;
printf("%d\n",++(p->x));
}