阅读量:0
在C语言中,可以使用strcat函数来将多个字符串合并成一个字符串。例如:
#include <stdio.h> #include <string.h> int main() { char str1[50] = "Hello"; char str2[50] = "World"; char result[100]; strcpy(result, str1); strcat(result, str2); printf("合并后的字符串为: %s\n", result); return 0; }
运行以上代码,输出结果为:
合并后的字符串为: HelloWorld
在这个例子中,我们先将第一个字符串复制到结果字符串中,然后使用strcat函数将第二个字符串追加到结果字符串的末尾,从而实现了多个字符串的合并。