当前位置: 代码迷 >> 综合 >> 63.编写程序,将两个字符串连接起来,不用strcat函数。
  详细解决方案

63.编写程序,将两个字符串连接起来,不用strcat函数。

热度:97   发布时间:2023-11-21 14:43:18.0

63.编写程序,将两个字符串连接起来,不用strcat函数。

如有错误,欢迎指出

//63.编写程序,将两个字符串连接起来,不用strcat函数
#include<stdio.h>
main()
{
    int i=0,j=0;char a[20],b[20],c[40];gets(a);gets(b);while(a[i])c[j++]=a[i++];i=0;while(b[i])c[j++]=b[i++];puts(c);
}

运行结果:
在这里插入图片描述

  相关解决方案