Visual Studio 2010 warning C4996


今天写程序的时候感觉自己没有写错啊,可是为什么VS2010会报错呢?

后来百度了一下才知道:在其他编译器下正常通过的C语言程序,可能会遇到类似如下的警告提示:

d:\coperator_c++\bishi\09_027\string.cpp(35): warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.

原因是:微软把好多函数改写了。名字也变了 strcp ---> strcpy_s 好友好多呢,就不一一举例了。

你可能感兴趣的:(Visual Studio 2010 warning C4996)