How to resolve error C4996: ' fopen ' problem in VS2013
The first time you write a console application using the VS Series editor, you often see the following error:
Error C4996: ' fopen ': This function or variable could be unsafe. Consider using fopen_s instead. To disable deprecation, use _crt_secure_no_warnings. See online Help for details.
1>f:\program files (x86) \microsoft Visual Studio 12.0\vc\include\stdio.h (211): See Declaration of "fopen"
The workaround steps are as follows:
- 1
Right-click on project file 1 and select 2
- 2
Then pop up the file's property page, click 1 "Preprocessor", and then click 2 to open the preprocessor as
- 3
Copy "_crt_secure_no_warnings" in the red box below, then OK and click Apply.
- 4
Problem solving
Reference: http://jingyan.baidu.com/article/90bc8fc87fbafff653640ca6.html
vs2013-Resolve error C4996: ' fopen ' problem