Vs2017 使用 strcpy 的时候会报错,提示 strcpy 是不安全的,需要用 strcpy_s 代替。
#include"pch.h"
#include
#include
usingnamespace std;
int main()
{
char str1[11]="hello";
char str2[12]="world";
char str3[11];
int len;
//复制str1到str2
strcpy_s(str3, str1);
cout <<"strcpy(str3, str1):"<< str3 << endl;
return0;
}