Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在谷歌找不到任何明确的来源,所以我决定在这里问。
c++ 中的函数 strncpy 和 _tcsncpy 接受 3 个参数:目标、源和 nCount。
我不清楚第三个参数 nCount 是什么。是要复制的字符数还是缓冲区大小(以字节为单位)?
将源的前 num 个字符复制到目标。
来源:http ://www.cplusplus.com/reference/cstring/strncpy/
您可以使用复制第一个num字节strlcpy。
num
strlcpy