写出下列程序的运行结果。 #include struct st {int x; int*y; }*p; int dt[4]={10,20,30,40}; struct st aa[4]={50,&dt[0],60,&dt[1

admin2017-10-26  16

问题 写出下列程序的运行结果。
  #include
  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\n",++p一>x);
    printf("%d\n",(++p)一>x);
    }

选项

答案51 60

解析
转载请注明原文地址:https://kaotiyun.com/show/Z1kx777K
0

最新回复(0)