在C語言中,可以使用strcat函數來將字符串連接起來。strcat函數的原型為:
char* strcat(char* destination, const char* source);
其中,destination為目標字符串,source為要連接的字符串。
下面是一個示例代碼:
#include <stdio.h>
#include <string.h>
int main() {
char str1[100] = "Hello";
char str2[] = " World!";
strcat(str1, str2);
printf("連接后的字符串:%s\n", str1);
return 0;
}
在該示例中,str1為目標字符串,str2為要連接的字符串。通過調用strcat函數將str2連接到str1上,最終輸出的結果為"Hello World!"。