strcpy怎样才会没有警告
char a[100]
CString str="123213214fdsafasdf";
strcpy((LPSTR)a,(LPSTR)(LPCTSTR)m_str);
这样虽可编译,但有警告,很不爽
Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'