编程,实现将两个字符串连接起来,不得使用字符串连接函数strcat()

编程,实现将两个字符串连接起来,不得使用字符串连接函数strcat()。(1)编写函数stingcat(chars1[],chars2[]),实现将字符串s2连接在s1的... 编程,实现将两个字符串连接起来,不得使用字符串连接函数strcat()。(1)编写函数stingcat(char s1[],char s2[]),实现将字符串s2连接在s1的后面。(2)编写主函数,在主函数中输入两个字符串,调用函数stringcat()实现将两个制服穿连接起来,并输出。 展开
 我来答
匿名用户
2013-05-12
展开全部
可以参考 曾经 写的代码:
用C语言编程:将两个字符串连接起来,不要用strcat函数

#include <stdio.h>

int main()
{
char a[10],b[10],c[20];
int i,j;
gets(a);
gets(b);
i=j=0;
while (a[i]!='\0')
{
c[i]=a[i];
i++;
}
while (b[j]!='\0')
{
c[i]=b[j];
i++;
j++;
}
c[i]='\0';
printf("a: %s,b: %s cat--%s\n",a,b,c);

return 0;
}
匿名用户
推荐于2018-05-07
展开全部
#include<stdio.h>char* stingcat(char s1[],char s2[])
{
int length=0;
char *s=NULL;
char *c=s1;
for(;*c!='\0';++c,length++);
c=s2;
for(;*c!='\0';++c,length++); c = new char[length];
s=s1;
int i=0;
while(*s!='\0')
{
c[i++]=*s;
++s;
}

s=s2;
while(*s!='\0')
{
c[i++]=*s;
++s;
} c[i]='\0';
return c;}int main()
{
printf("%s",stingcat("abc","defg"));
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式