编程错误汇总
Posted dana-gx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编程错误汇总相关的知识,希望对你有一定的参考价值。
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)
以上是关于编程错误汇总的主要内容,如果未能解决你的问题,请参考以下文章