C++中如何将两字符指针指向的字符串连接 20
4个回答
展开全部
定义为指针指向的字符串是常字符串,只能读取不能写入。要连接这样的字符串,得另外开辟一个空间存放连接起来的字符串。举例代码如下:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include <iostream>
using namespace std;
int main(void){
char *p1="1234567",*p2="abcdefghijklmnop",*p3;
int tmp;
p3=new char[tmp=strlen(p1)+strlen(p2)+1];
cout << strcat(strcpy(p3,p1),p2) << endl;
delete[tmp]p3;
return 0;
}
展开全部
string + string... 两个字符串直接相加。。。 如果是char *的话需要用到strcpy函数。。
更多追问追答
追问
写下,如将char *q,*p;p和q的内容连接
追答
char *p = "abcd";
char *q = "eggg";
char *s = (char *)malloc(strlen(p) + strlen(q) + 1);
strcpy(s, p);
strcat(s, q);
printf("s = %s", s);
system("pause");
return 0;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
void str_cat( char t[], char *s )
{
char *tmp=t;
while(*tmp) tmp++;
while( *tmp++=*s++ );
}
void main()
{
char s1[100]="hello" ; //s1是结果串,因此,其空间必须要能容下待拼接的串大小
char *s2=" world" ;
str_cat( s1,s2 );
printf("%s\n", s1 );
}
void str_cat( char t[], char *s )
{
char *tmp=t;
while(*tmp) tmp++;
while( *tmp++=*s++ );
}
void main()
{
char s1[100]="hello" ; //s1是结果串,因此,其空间必须要能容下待拼接的串大小
char *s2=" world" ;
str_cat( s1,s2 );
printf("%s\n", s1 );
}
更多追问追答
追问
题目中的两个都是字符指针,没字符数组
写下,如将char *q,*p;p和q的内容连接
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
举个例子以供参考:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
int i,j;
char s1[100]="google";
char s2[100]="baidu";
for(i=0;;i++)
{
if(s1[i]=='\0')
break;
}
i--;
j=0;
while(1)
{
if(s2[j]!='\0')
s1[i++]=s2[j++];
else
break;
}
printf("s1=%s",s1);
system("pause");
return 0;
}
更多追问追答
追问
我说的是字符指针,不是字符数组
写下,如将char *q,*p;p和q的内容连接
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |