设有数组定义如下: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<
执行下列程序段时,若从键盘输入:student and teacher,则输出为_________。char str[100];cin>>str;cout<
执行下列程序段时,若从键盘输入:student and teacher,则输出为_________。char str[100];cin.getline(str,100);cout<
设有数组定义如下:int a[10];则下列指针的定义与初始化中有语法错误的是( )。
A. int *p1=&a;
B. int *p2=a;
C. int *p3=&a[0];
D. int *p4=&a[1];