使用指针连接两个字符串

实例说明:
实现将两个已知的字符串连接,放到另一个字符串数组中,并显示出结果。
实现过程:

#include 
#include  
using namespace std;
char link(char *p,char *q,char *l)
{
	while(*p!='\0')
	{
		*l=*p;
		p++;
		l++;
	 } 
	 while(*q!='\0')
	 {
	 	*l=*q;
	 	q++;
		l++;
	 }
	  l='\0';
}
int main()
{
    char c[100],*l;
    char a[]={"aaaaswdqw"};
    char b[]={"sebttydff"};
    l=c;
    link(a,b,l);
    cout<<l<<endl;
}


实现结果:
使用指针连接两个字符串_第1张图片

你可能感兴趣的:(假期记录)