C語言中字符串連接函數(shù)使用的是strcat()函數(shù),函數(shù)原型如下:
char* strcat(char* destination, const char* source);
strcat()函數(shù)將源字符串追加到目標(biāo)字符串的末尾,并返回目標(biāo)字符串的指針。
使用方法如下:
以下是一個簡單的示例代碼:
#include <stdio.h>
#include <string.h>
int main() {
char destination[20] = "Hello";
char source[] = " World!";
strcat(destination, source);
printf("Concatenated string: %s\n", destination);
return 0;
}
輸出結(jié)果為:Concatenated string: Hello World!