更多"执行语句序列 char str1[10]='ABCD',str2[1"的相关试题:
[填空题]执行语句序列
char strl[10]="ABCD",str2[10]="XYZxyz";
for (int i=0; strl[i]=str2[i]; i++)
后,数组str1中的字符是XYZxyz,数组str2中的字符串是 【6】 。
[填空题]执行语句序列
char strl[10]="ABCD",str2[10]="XYZxyz";
for (int i=0; strl[i]=str2[i]; i++)
后,数组str1中的字符是XYZxyz,数组str2中的字符串是 【6】 。
[填空题]设char strl[7]="ABCDEF",str2[5]="xyz";;则执行语句:
printf("%d",strlen(strcpy(str1,str2)));
后的输出是______。
[填空题]在执行语句序列:
int i=0;
do i++;
while(i*i<10);
时,do后面的循环体语句i++被执行的次数为______。
[填空题]执行语句序列
int x=10,&r=X;
cout<<x<<’-’,<<r<<endl;
输出结果为 【9】 。
[填空题]执行语句序列:
int x=10,&r=x;
cout<<x<<’.’<<r<<endl;
输出结果为______。
[填空题]执行语句序列:
int x=10, &r=x;
cout<<x<<’-’<<r<<end1;
输出结果为 【8】 。
[填空题]执行语句序列
int x=10,&r=X;
cout<<x<<’-’,<<r<<endl;
输出结果为 【9】 。
[填空题]执行语句序列:
int x=10, &r=x;
cout<<x<<’-’<<r<<end1;
输出结果为 【8】 。
[填空题]已知char str[]="ABCD";,则语句printf("%d",strlen(str));的输出是______。
[填空题]执行语句序列
int x=10,&r=x;
cout<<x<<’-’<<r<<endl;
输出结果为______。
[填空题]执行语句序列“int k=0; do k++; while(k*k<20);”后,k的值为______。
[填空题]执行语句序列:
int x=10,&r=x;
cout<<x<<’.’<<r<<endl;
输出结果为______。
[填空题]指令“AND AX,STR1 AND STR2”中,STR1和STR2是两个已赋值的变量,两个AND的区别是第一个AND是逻辑与指令,而第二个AND是逻辑与______。