strncat
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <string> 中定义
|
||
char *strncat( char *dest, const char *src, size_t count ); |
||
追加一个字节的字符串所指向的
src
指出,dest
一个字节的字符串。在最count
字符被复制。字节的字符串,是空终止。如果字符串重叠,该行为是未定义. 原文:
Appends a byte string pointed to by
src
to a byte string pointed to by dest
. At most count
characters are copied. 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 |
count | - | 要复制的字符的最大数量
原文: maximum number of characters to copy |
[编辑] 返回值
dest
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
连接两个字符串 (函数) | |
一个字符串复制到另一个地方 (函数) | |
C++ documentation for strncat
|