I have really annoying problem with strcpy.
Whenever I use strcpy(blahblah, "blahblah") I get this warning message:
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.
1> c:\program files\microsoft visual studio 9.0\vc\include\string.h(74) : see declaration of 'strcpy'
And when I use strcpy_s(blahblah, "blahblah") instead...
error C2660: 'strcpy_s' : function does not take 2 arguments
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.