首页 > 编程 > C++ > 正文

c++ 连接两个字符串实现代码 实现类似strcat功能

2020-02-24 14:26:53
字体:
来源:转载
供稿:网友

strcat函数使用两个字符串作为形式参数并将它们连接起来,文章内容是来自武林技术频道小编为大家介绍的c++ 连接两个字符串实现代码 实现类似strcat功能,感谢武林技术频道的提供,大家一起好好学习吧。


#include "stdafx.h"
#include<iostream>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
char s1[60]="kingbaby";
char *s2="hello";
int i=0;int j=0;
while(s1[i]!='/0')i++;
while((s1[i]=s2[j])!='/0'){
j++;i++;
}
cout<<s1<<endl;
return 0;
}


方法二

 

 

 


#include "stdafx.h"
#include<iostream>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
char a[20] ="aaaa";
char b[10]="bbb";
char *stra=a;
char *strb=b;

while(*stra!='/0')stra++;
while(*strb!='/0')
{
*stra=*strb;//同时移动指针
strb++;
stra++;
}
return 0;
}

以上就是c++ 连接两个字符串实现代码 实现类似strcat功能,建议大家好好品读,相信对你是有用的,更多的专业知识尽在武林技术频道!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表