C语⾔实现字符串拼接#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* str_contact(const char*,const char*);
/**
** C语⾔实现字符串拼接
**/
int main(void)
{
char *ch1 = "hui_";
char *ch2 = "_heihei";
char *res = NULL;
res = str_contact(ch1,ch2);
printf("res = %s\n",res);
字符串函数连接free(res);
res = NULL;
}
/**
** 字符串拼接⽅法
**/
char * str_contact(const char *str1,const char *str2)
{
char * result;
result = (char*)malloc(strlen(str1) + strlen(str2) + 1); //str1的长度 + str2的长度 + \0;
if(!result){ //如果内存动态分配失败
printf("Error: malloc failed in concat! \n");
exit(EXIT_FAILURE);
}
strcpy(result,str1);
strcat(result,str2); //字符串拼接
return result;
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论