请在该程序右侧写出其输出结果。 int aa[3][3]={{3},{4},{6}}; main() {int j,*p=&aa[0][0]; for(j=0;j

admin2016-12-25  33

问题 请在该程序右侧写出其输出结果。
    int aa[3][3]={{3},{4},{6}};
    main()
    {int j,*p=&aa[0][0];
    for(j=0;j<2;j++)
    {if(j==0)
    aa[j][j+1]=*p+2;
    else++p;
    printf( "% d",*p);}
  }

选项

答案35

解析
转载请注明原文地址:https://jikaoti.com/ti/KLtaFFFM
0

最新回复(0)