C++ 中的strcat() 函數將一個字符串的副本附加到另一個字符串的末尾。
strcat()原型
char* strcat( char* dest, const char* src );
strcat()
函數有兩個參數:dest
和 src
。此函數將 src
指向的字符串的副本附加到 dest
指向的字符串的末尾。 dest
末尾的空終止字符被src
的第一個字符替換,結果字符也以空終止。
行為未定義,如果
- 字符串重疊。
- dest 數組不夠大,無法追加 src 的內容。
它在<cstring> 頭文件中定義。
參數:
dest
:指向要附加到的空終止字符串的指針。src
:指向要附加的空終止字符串的指針。
返回:
strcat() 函數返回 dest,即指向目標字符串的指針。
示例:strcat() 函數的工作原理
#include <cstring>
#include <iostream>
using namespace std;
int main()
{
char dest[50] = "Learning C++ is fun";
char src[50] = " and easy";
strcat(dest, src);
cout << dest ;
return 0;
}
運行程序時,輸出將是:
Learning C++ is fun and easy
相關用法
- C++ strcat() vs strncat()用法及代碼示例
- C++ strchr()用法及代碼示例
- C++ strcmp()用法及代碼示例
- C++ strcspn()用法及代碼示例
- C++ strcpy()用法及代碼示例
- C++ strcoll()用法及代碼示例
- C++ string::length()用法及代碼示例
- C++ string::npos用法及代碼示例
- C++ strncat()用法及代碼示例
- C++ strstr()用法及代碼示例
- C++ strtok()用法及代碼示例
- C++ strtod()用法及代碼示例
- C++ strtoimax()用法及代碼示例
- C++ strpbrk()用法及代碼示例
- C++ strxfrm()用法及代碼示例
- C++ strspn()用法及代碼示例
- C++ strncmp()用法及代碼示例
- C++ strtoull()用法及代碼示例
- C++ string at()用法及代碼示例
- C++ strol()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ strcat()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。