跳转到内容

C++ 编程/代码/标准 C 库/函数/strncpy

来自 Wikibooks,开放的书籍,为开放的世界
语法
#include <cstring>
char *strncpy( char *to, const char *from, size_t count );

strncpy() 函数最多复制 count 个字符从 from 到字符串 to。只有当 from 的字符数少于 count 时,才会用 '\0' 字符填充剩余部分。return 值是结果字符串。

注意
使用未用 '\0' 字符填充的字符串会导致安全漏洞。

相关主题
memcpy - strchr - strcpy - strncat - strncmp
华夏公益教科书