转载:https://blog.csdn.net/bin_ge_love/article/details/52089739
问题描述:在vs2013中使用fopen,strcpy等函数时,会出现
error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
类似的警告或者错误,这是由于windows方面编译器认为这些函数不安全,提示让你用他们提供的库函数。
解决方法为:
方法1:在文件头加上 #define _CRT_SECURE_NO_WARNINGS
方法2:操作vs2013中,在项目->属性->C/C++->预处理器->预处理器定中添加 _CRT_SECURE_NO_WARNINGS 这个预定义。
方法3:用windows提供的库函数进行替换。
int num1, num2, num3;
wchar_t ch1[10], ch2[10], ch3[10];
GetDlgItem(IDC_EDIT1)->GetWindowText(ch1, 10);
GetDlgItem(IDC_EDIT2)->GetWindowText(ch2, 10);
num1 = _wtoi(ch1);
num2 = _wtoi(ch2);
num3 = num1 + num2;
_itow(num3, ch3, 10);
GetDlgItem(IDC_EDIT3)->SetWindowText(ch3);