编程错误汇总
1. VS2017编译C/C++代码时出现如下错误:
错误 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.
原因:vs准备弃用strcpy的,安全性较低
解决:1.所以微软提供了strcpy_s来代替
2.如果想继续使用strcpy的,main前面加上 #pragma warning(disable:4996)