描述
C庫函數char *strcat(char *dest, const char *src)附加指向的字符串src到指向的字符串的末尾dest。
聲明
以下是 strcat() 函數的聲明。
char *strcat(char *dest, const char *src)
參數
dest─ 這是指向目標數組的指針,它應該包含一個 C 字符串,並且應該足夠大以包含連接的結果字符串。
src─ 這是要附加的字符串。這不應與目的地重疊。
返回值
此函數返回一個指向結果字符串 dest 的指針。
示例
下麵的例子展示了 strcat() 函數的用法。
#include <stdio.h>
#include <string.h>
int main () {
char src[50], dest[50];
strcpy(src, "This is source");
strcpy(dest, "This is destination");
strcat(dest, src);
printf("Final destination string:|%s|", dest);
return(0);
}
讓我們編譯並運行上麵的程序,它會產生以下結果——
Final destination string:|This is destinationThis is source|
相關用法
- C語言 strcspn()用法及代碼示例
- C語言 strchr()用法及代碼示例
- C語言 strcmpi()用法及代碼示例
- C語言 strcoll()用法及代碼示例
- C語言 strcmp()用法及代碼示例
- C語言 strcpy()用法及代碼示例
- C語言 strtol()用法及代碼示例
- C語言 strrchr()用法及代碼示例
- C語言 strftime()用法及代碼示例
- C語言 strtok()用法及代碼示例
- C語言 strncat()用法及代碼示例
- C語言 strupr()用法及代碼示例
- C語言 strlen()用法及代碼示例
- C語言 strtod()用法及代碼示例
- C語言 strspn()用法及代碼示例
- C語言 strstr()用法及代碼示例
- C語言 strxfrm()用法及代碼示例
- C語言 strrev()用法及代碼示例
- C語言 strtok()、strtok_r()用法及代碼示例
- C語言 strerror()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - strcat()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。