strcpy
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <string.h> 中定义
|
||
char *strcpy( char *dest, const char *src ); |
||
复制的字节串所指向的
src
字节的字符串,指向dest
.原文:
Copies the byte string pointed to by
src
to byte string, pointed to by dest
.如果字符串重叠,该行为是未定义.
原文:
If the strings overlap, the behavior is undefined.
目录 |
[编辑] 参数
dest | - | 指针字节的字符串复制到
原文: pointer to the byte string to copy to |
src | - | 指针null结尾的字节的字符串复制
原文: pointer to the null-terminated byte string to copy from |
[编辑] 返回值
dest
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
复制一个字符从一个字符串到另一个的一定量的 原文: copies a certain amount of characters from one string to another (函数) | |
一个缓冲区拷贝到另一个地方 (函数) | |
C++ documentation for strcpy
|