strcpy, sscanf, fscanf.... etc. There functions are not available anymore in recent Visual Studio .Net C++. Instead of these function, it is recommend to use new functions such as strcpy_s, sscanf_s, fscanf_s ... etc. If you are not pleased to change your old style functions with new ones, you can avoid this problem easily by using this define statement, "#define _CRT_SECURE_NO_DEPRECATE".
For more information about deprecated functions, refer to "http://msdn.microsoft.com/en-us/library/ms235384(v=vs.80).aspx"
Subscribe to:
Post Comments (Atom)
-
3 vertices and cross product If 3 vertices' coordinates are given, the size of the cross product of the two vectors is same to two ...
-
char path[_MAX_PATH]; const char* varName = "[system environment variable name]"; size_t len; getenv_s(&len, path, 80, varName...
No comments:
Post a Comment