下列程序段的输出结果是( )。int t[10]={1,2,3,4,5};cout<
A. 1,2,3,4,5
B. 1,2,3,4,5,0,0,0,0,0
C. 1
D. 元素t[0]的地址
设有数组定义如下:double a[100];char b[100];则下列选项中存在语法错误的是( )。
A. cin>>a;
B. cin>>b;
C. cout< D. cout<
设有数组定义如下:int a[10]={1,2,3,4,5};int b[3][4]={1,2,3,4,5,6,7,8,9};则元素a[1]的值为__(1)__,a[5]的值为__(2)__,b[1][1]的值为__(3)__,b[2][2]的值为__(4)__。
执行下列程序段时,输出的第1行是___(1)____,第2行是___(2)____,第3行是___(3)____,第4行是___(4)____。char s1[20],s2[20]="1+15=",s3[20]="125";strcpy(s1,"12345");// Astrcat(s2,"16");// Bcout<