本文主要是介绍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;
}
这篇关于C语言-字符串拼接的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!