C語言中的strcat函數用于將一個字符串追加到另一個字符串的末尾。
函數原型如下:
char* strcat(char* destination, const char* source);
使用方法如下:
char destination[100] = "Hello ";
const char source[] = "world!";
strcat(destination, source);
printf("%s\n", destination); // 輸出:Hello world!
需要注意的是,目標字符串的數組長度應足夠大,以容納追加后的結果。此外,目標字符串必須以空字符結尾,否則結果可能會不正確。