strcat
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <string.h> 中定义
|
||
char *strcat( char *dest, const char *src ); |
||
追加一个字节的字符串所指向的
src
指出,dest
一个字节的字符串。字节的字符串,是空终止。如果字符串重叠,该行为是未定义. 原文:
Appends a byte string pointed to by
src
to a byte string pointed to by dest
. The resulting byte string is null-terminated. If the strings overlap, the behavior is undefined. 目录 |
[编辑] 参数
dest | - | 指针null结尾的字节字符串追加到
原文: pointer to the null-terminated byte string to append to |
src | - | 指针null结尾的字节的字符串复制
原文: pointer to the null-terminated byte string to copy from |
[编辑] 返回值
dest
[编辑] 示例
char str1[50] = "Hello "; char str2[50] = "World!"; strcat(str1, str2); printf("%s", str1);
输出:
Hello World!
[编辑] 另请参阅
连接两个字符串的字符的一定量 原文: concatenates a certain amount of characters of two strings (函数) | |
一个字符串复制到另一个地方 (函数) | |
C++ documentation for strcat
|