• 2021-04-14
    定义如下变量和数组int m;int a[2][2]={1,2,3,4};则下面语句的输出结果是for(m=0;m<2;m++;)printf("%d,",a[m][1-m]);? 1,2|2,3|3,4|1,4