关于:不用strcat函数而将两个字符串连接起来的?????
main(){char s1[80],s2[40];
int i=0 ,j=0;
scanf("%s",s1);
scanf("%s",s2);
while(s1[i]!='\0')
i++;
while(s1[j]!='\0')
s1[i++]=s2[j++];
s1=[i]='\0';
printf("The new string is:%s",s1);
}
对红色标志的不是太理解,谁能帮我解释解释??谢谢了!