C/C++ Programming 1  /  C/C++ Programming 2
Ray Mitchell

Microsoft Compiler Warning C4996

If you get warning C4996 when compiling a C program file, place the following preprocessor directive first in that file or define it in the project settings:

      #define _CRT_SECURE_NO_WARNINGS

If you get it in a C++ program file, you have done something wrong in that file.