其他分享
首页 > 其他分享> > C语言-字符串拼接

C语言-字符串拼接

作者:互联网

在这里插入图片描述

//字符串拼接
#include<stdio.h>//陈有乐15号
#include<string.h>
int main()
{
	char* new_strcat(char* a, char* b);//函数声明

	char *a, *b;
	char* str;
	a = (char*)malloc(sizeof(char) * 20);//新开辟内存空间 1*20= 20个字节
	b = (char*)malloc(sizeof(char) * 10);//新开辟内存空间 1*10= 10个字节
	printf("请输入两个字符串:\n");
	scanf("%s%s", a,b);

	str = new_strcat(a, b);
	printf("%s", str);
	system("pause");
	return 0;
}
char* new_strcat(char*a,char*b)
{
	strcat(a,b);
	return a;
}

标签:10,20,strcat,C语言,char,拼接,str,字符串,new
来源: https://blog.csdn.net/chenyouledashen/article/details/121644341