strcpy_s 的使用示例:
#include <cstring>
#include <iostream>
int main() {
char dest[10];
const char *src = "hello";
strcpy_s(dest, sizeof(dest), src);
std::cout << dest << std::endl;
return 0;
}
代码的意思是,将字符串 src
复制到字符数组 dest
中,并且保证不越界,输出结果为 hello
。