将两个字符串连接起来,不要用strcat函数。
Posted heyuchang666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将两个字符串连接起来,不要用strcat函数。相关的知识,希望对你有一定的参考价值。
3.将两个字符串连接起来,不要用strcat函数。
#include<stdio.h>
void main()
char s1[80],s2[40];
int i=0,j=0;
printf("\\ninput stringl:");
scanf("%s",s1);
printf("input string2:");
scanf("%s",s2);
while(s1[i]!='\\0')
i++;
while(s2[j]!='\\0')
s1[i++]=s2[j++];
s1[i]='\\0';
printf("The new string is:%s\\n",s1);
以上是关于将两个字符串连接起来,不要用strcat函数。的主要内容,如果未能解决你的问题,请参考以下文章
编写一个程序,将两个字符串连接起来,并输出(不要使用strcat函数)。用C语言求解详细过程。
编一个程序,将两个字符串连接起来,(1)用strcat函数(2)不用strcat函数。
C语言编写一个程序,将两个字符串连接起来,不要使用strcat函数
C语言编程:编一程序,将两个字符串联接起来,不要用Strcat函数。