error C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead.

1>10-1stocks.cpp(27): error C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.

1>c:\program files (x86)\windows kits\10\include\10.0.16299.0\ucrt\string.h(337): note: 参见“strncpy”的声明

使用系统win10  Microsoft Visual Studio 2017


经多方了解,它的原理@鱼C缸是的很清楚点击打开链接

我就不多说了,

解决方法是这样的

error C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead._第1张图片error C4996: 'strncpy': This function or variable may be unsafe. Consider using strncpy_s instead._第2张图片

注意:在图上标记的地方输入/D"  *****  "

其中****所代表的内容是你编译后调试信息中提示的 use _CRT_SECURE_NO_WARNINGS 。

提示use什么就填入什么。


你可能感兴趣的:(QT)