其他分享
首页 > 其他分享> > 错误: error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_

错误: error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_

作者:互联网

错误: error C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. 的处理方法

 

为什么会报这个错?因为strcpy这个函数不安全,即会造成栈溢出

在VS2013下如果使用strcpy有时候会报这个错误,解决方法是找到该项目的属性:

 

 

在预处理定义中添加:

_CRT_SECURE_NO_WARNINGS

 

标签:function,may,C4996,unsafe,strcpy,instead
来源: https://www.cnblogs.com/pquan/p/10989029.html