想实现strcat功能,直接网上找一个。

第一种:

#include "stdafx.h"
#include<iostream>
using namespace std; int _tmain(int argc, _TCHAR* argv[])
{
char s1[]="kingbaby";
char *s2="hello";
int i=;int j=;
while(s1[i]!='\0')i++;
while((s1[i]=s2[j])!='\0'){
j++;i++;
}
cout<<s1<<endl;
return ;
}

第二种:

#include "stdafx.h"
#include<iostream>
using namespace std; int _tmain(int argc, _TCHAR* argv[])
{
char a[] ="aaaa";
char b[]="bbb";
char *stra=a;
char *strb=b; while(*stra!='\0')stra++;
while(*strb!='\0')
{
*stra=*strb;//同时移动指针
strb++;
stra++;
}
return ;
}
// ConsoleApplication1.cpp : 定义控制台应用程序的入口点。
// #include "stdafx.h"
#include <iostream>
using namespace std;
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h> char* chargame(char* name)
{
char a[] ="aaaa";
char b[]="bbb";
char *stra=name;
char *strb=b; while(*stra!='\0')
{
stra++;
}
while(*strb!='\0')
{
*stra=*strb;//同时移动指针
strb++;
stra++;
}
// 指针移动最后,如果获取呢? ,使用没有移动指针的地址,就可以得出结果
return name;
}
int _tmain(int argc, _TCHAR* argv[])
{
char name[] = "xxxxx";
char* xxx = chargame(name);
cout<<xxx<<endl;
return ;
}
05-04 08:27