ERROR-C4996

如果使用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.

1>c:program files (x86)windows kits10include10.0.15063.0ucrtstring.h(136): note: 参见“strcpy”的声明 可以这样子解决:右键工程名-->属性-->C/C++-->预处理器-->预处理器定义,编辑右边输入框加入:_CRT_SECURE_NO_WARNINGS 

原文地址:https://www.cnblogs.com/gc612/p/9932144.html