【单选题】
以下程序段的运行结果是()。charstr[3][2]={a,b,c,\0,e,f};printf("%s",str[0]);
【单选题】
main(){char a[]=Money;printf(%c,a[0]);}执行上面的程序段后,输出结果是()。
【简答题】
下列程序的输出结果是[填空1]。#includestdio.hmain(){ char a;a=0printf(%d%c,a,a); }
【单选题】
以下程序段的运行结果是()。chara[]="abc";charb[]="xyz";charc[10];strcpy(c,a);strcat(c,b);printf("%s",c);
【单选题】
以下程序段的结果是 c的值为( )。char * a[5]={“12378”, “1237”, “1236789”, “1237”, “123708”};
int i,c=0;
for(i=0;i5:i++)
if(StrCmp(a[i], “1237”)==0)c++;
【单选题】
有如下程序:
#includevoid main( )
{ int a=2,b=-1,c=2;
if (ab)
if (b0) c=0;
else c++;
printf(%d\n
}
该程序的输出结果是
【简答题】
#include stdio.hint main(){char string[]=I love China! printf(%s\n,string); printf(%c\n,string[7]); return 0;}以上程序运行结果为[填空1]。
【单选题】
下述程序的运行结果( )。
#includevoid main()
{
int a=4,b=3,c=5,t=0;
if(aa=b;b=t;
if(aa=c;c=t;
printf(%d,%d,%d\n,a,b,c);
}
【单选题】
下述程序的运行结果( )。
#includevoid main()
{
int a=4,b=3,c=5,t=0;
if(aa=b;b=t;
if(aa=c;c=t;
printf(%d,%d,%d\n,a,b,c);
}
【简答题】
#include stdio.hint main(){char a[ ]=I love China!,b[20];int i;for(i=0;*(a+i)!=\0i++)*(b+i)=*(a+i);*(b+i)=\0//printf(string a is:%s\n//printf(string b is:for(i=0;b[i]!=\0i++)printf(%c,b[i]);printf(\nreturn 0;}以上程序运行结果为[填空1]。