📅  最后修改于: 2020-09-25 09:06:46             🧑  作者: Mango
char* strcat( char* dest, const char* src );
strcat()
函数采用两个参数: dest
和src
。该函数将被指向的<字符>的副本src
字符串的结尾由指向dest
。 dest
末尾的空终止字符替换为src
的第一个字符 ,并且所得字符也以空终止。
该行为是不确定的,如果
它在
所述的strcat() 函数返回dest,指针到目标字符串。
#include
#include
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