Lin returned to Beijing since she wanted to do the interpretation work forTagore.
查看答案
Lin took part in the design of the Monument to the People’s Heroes.
A. 对
B. 错
以下程序的运行结果是()#include int main(){ int aa[3][3]={{2},{4},{6}},i,*p=&a[0][0];for(i=0;i<2;i++){ if(i==0) aa[i][i+1]=*p+1;esle++p;printf("%d\n",*p);}printf("\n");return 0;}
A. 23
B. 26
C. 33
D. 36
以下二维数组的定义不正确的是()
A. int a[2][2]={{1},{2}};
B. int a[][2]={1,2,3,4};
C. int a[2][2]={{1},2,3};
D. int a[2][]={{1,2},{3,4}};
以下程序的运行结果是()#include int main(){ int i;int a[3][3]={1,2,3,4,5,6,7,8,9};for(i=0;i<3;i++)printf("%d",a[2-i][i]);return 0;}
A. 1 5 9
B. 7 5 3
C. 3 5 7
D. 5 9 1