#include<stdio.h>
int main()
{
char s1[80],s2[40],i=0,j=0;
scanf("%s",s1); //不能加\n
scanf("%s",s2); //不能加\n
while(s1[i]!='\0')
i++;
while(s2[j]!='\0')
{s1[i++]=s2[j++];}
s1[i]='\0';
printf("%s\n",s1);
return 0;
}
相关文章
- 11-22写一个函数,将两个字符串连接
- 11-22将两个字符串连接,不用strcat函数
- 11-2221.6.12字符串连接函数:strcat