在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函數將第二個字符串追加到結果字符串的末尾,從而實現了多個字符串的合并。