C++中如何将两字符指针指向的字符串连接 20

 我来答
White_MouseYBZ
推荐于2017-10-04 · TA获得超过4万个赞
知道大有可为答主
回答量:2.1万
采纳率:82%
帮助的人:6686万
展开全部

定义为指针指向的字符串是常字符串,只能读取不能写入。要连接这样的字符串,得另外开辟一个空间存放连接起来的字符串。举例代码如下:

//#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;
}
宿命的轮回_
2015-03-26 · TA获得超过108个赞
知道答主
回答量:214
采纳率:100%
帮助的人:135万
展开全部
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;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
kaixingui2012
2015-03-26 · TA获得超过4.2万个赞
知道大有可为答主
回答量:1.4万
采纳率:81%
帮助的人:6480万
展开全部
#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 );
}
更多追问追答
追问
题目中的两个都是字符指针,没字符数组
写下,如将char *q,*p;p和q的内容连接
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yucwei
2015-03-26 · 超过24用户采纳过TA的回答
知道答主
回答量:76
采纳率:0%
帮助的人:52.6万
展开全部

举个例子以供参考:

#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的内容连接
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式