Remove secure warnings (_CRT_SECURE_NO_WARNINGS) from projects by default in Visual Studio

C++Visual StudioPrecompiler

C++ Problem Overview


Is there a way to set by default for all projects removing the precompiler secure warnings that come up when using functions like scanf(). I found that you can do it by adding a line in the project option or a #define _CRT_SECURE_NO_WARNINGS in the beginning of the code.

I find myself repeatedly creating new projects for solving programming contests and it is really annoying (and takes valuable time) to add:

#ifdef _MSC_VER
#define _CRT_SECURE_NO_WARNINGS
#endif

In the beginning of the code, or to set it in the precompiler options every time I start a new project.

C++ Solutions


Solution 1 - C++

Mark all the desired projects in solution explorer.

  • Press Alt-F7 or right click in solution explorer and select "Properties"
  • Configurations: All Configurations
  • Click on the Preprocessor Definitions line to invoke its editor
  • Choose Edit
  • Copy _CRT_SECURE_NO_WARNINGS into the Preprocessor Definitions white box on the top

Copy

Solution 2 - C++

It may have been because I am still new to VS and definitely new to C, but the only thing that allowed me to build was adding

#pragma warning(disable:4996)

At the top of my file, this suppressed the C4996 error I was getting with sprintf

A bit annoying but perfect for my tiny bit of code and by far the easiest.

I read about it here: https://msdn.microsoft.com/en-us/library/2c8f766e.aspx

Solution 3 - C++

Not automatically, no. You can create a project template as BlueWandered suggested or create a custom property sheet that you can use for your current and all future projects.

  1. Open up the Property Manager (View->Property Manager)
  2. In the Property Manager Right click on your project and select "Add New Project Property Sheet"
  3. Give it a name and create it in a common directory. The property sheet will be added to all build targets.
  4. Right click on the new property sheet and select "Properties". This will open up the properties and allow you to change the settings just like you would if you were editing them for a project.
  5. Go into "Common Properties->C/C++->Preprocessor"
  6. Edit the setting "Preprocessor Definitions" and add _CRT_SECURE_NO_WARNINGS.
  7. Save and you're done.

Now any time you create a new project, add this property sheet like so...

  1. Open up the Property Manager (View->Property Manager)
  2. In the Property Manager Right click on your project and select "Add Existing Project Property Sheet"

The benefit here is that not only do you get a single place to manage common settings but anytime you change the settings they get propagated to ALL projects that use it. This is handy if you have a lot of settings like _CRT_SECURE_NO_WARNINGS or libraries like Boost that you want to use in your projects.

Solution 4 - C++

All the solutions here failed to work on my VS2013, however, I put the #define _CRT_SECURE_NO_WARNINGS in the stdafx.h just before the #pragma once and all warnings were suppressed.

Note: I only code for prototyping purposes to support my research so please make sure you understand the implications of this method when writing your code.

Solution 5 - C++

  • Copy _CRT_SECURE_NO_WARNINGS
  • Paste it on projects->properties->c/c++->preprocessor->preprocessor definitions
  • Click OK

It will work

Solution 6 - C++

For VS 2017:

I can confirm it works in stdafx.h both in these styles:

a)

#pragma once
#define _CRT_SECURE_NO_WARNINGS 1 
#define _WINSOCK_DEPRECATED_NO_WARNINGS 1 

b)

#define _CRT_SECURE_NO_WARNINGS 1 
#define _WINSOCK_DEPRECATED_NO_WARNINGS 1 
#pragma once

(I have added another define for MSDN network calls... Of course, I do prefer a).

I can confirm that:

#define _CRT_SECURE_NO_WARNINGS

(without a value) DOES NOT WORK.

The real point is to put these defines BEFORE declarations of functions, i.e. before *.h

Solution 7 - C++

If your project does not use stdafx.h, you can put the following lines as the first lines in your .cpp file and the compiler warning should go away -- at least it did for me in Visual Studio C++ 2008.

#ifdef _CRT_SECURE_NO_WARNINGS
#undef _CRT_SECURE_NO_WARNINGS
#endif
#define _CRT_SECURE_NO_WARNINGS 1

It's ok to have comments and blank lines before them.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJuan MartinezView Question on Stackoverflow
Solution 1 - C++user2548100View Answer on Stackoverflow
Solution 2 - C++Shaun314View Answer on Stackoverflow
Solution 3 - C++Captain ObvliousView Answer on Stackoverflow
Solution 4 - C++PDF417View Answer on Stackoverflow
Solution 5 - C++LeninkumarView Answer on Stackoverflow
Solution 6 - C++ingcontiView Answer on Stackoverflow
Solution 7 - C++R SahuView Answer on Stackoverflow