以下程序的输出结果为( )。main( ){ char s1[40]=country s2[20]=side;int i=0 j=0;while(s
以下程序的输出结果为()。
main()
{ char s1[40]="country",s2[20]="side";
int i=0,j=0;
while(s1[i]!="") i++;
while(s2[j]!="") s1[i++]=s2[j++];
s1[i]=0;
printf("%s
",s1);
}
A side
B country
C sidetry
D countryside
请帮忙给出正确答案和分析,谢谢!