在编译c++程序时报如下错:
error C4996: 'strncat': This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
error C4996: 'sprintf': This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
在网上找到的解决方法如下:
1. 加入 #define _CRT_SECURE_NO_WARNINGS
2. 加入 #pragma warning (disable: 4996)
3. (你的项目)-->右键 --> 属性, 进去以后,在C++ --> 高级 --> 禁用特定警告 中添加:4996
4. (你的项目)-->右键 --> 属性, 进去以后,在C++ --> 预处理器 --> 预处理器定义 中添加:_CRT_SECURE_NO_WARNINGS
5. 如果使用“win32应用程序向导”创建项目时,可以将“安全开发生命周期(SDL)检查”的选项去掉
参考文档:
https://jingyan.baidu.com/article/ce436649fd61543773afd32e.html
https://blog.csdn.net/sdujava2011/article/details/41177699