题目:将两个字符串连接起来,不用strcat函数。
#include<stdio.h>
int main()
{
char s1[100],s2[20];
int i=0,j=0;
printf("input string1:");
scanf("%s",s1);
printf("input string2:");
scanf("%s",s2);
while(s1[i]!='\0') //找到s1的结尾下标
i++;
while(s2[j]!='\0')
s1[i++]=s2[j++]; //简洁
s1[i]='\0';
printf("\nThe new string is:%s\n",s1);
return 0;
}