im starting to learn C++ (just finished with C) and Im trying to use strings. Ive included the library, and i get this error when compiling:
Severity Code Description Project File Line Suppression State
Error C4996 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS.
Now I know that this is due to the risk in buffer overflow, but in my task I have to do it that way.
I've read that adding the #define _CRT_SECURE_NO_WARNINGS
is suppose to remove that warning, but it doesnt...