主题:strcpy, wcscpy, _mbscpy使用环境
char *strcpy( char *strDestination, const char *strSource );是不是只在 VC 6.0 版本钱使用的
之后的版本要使用
wchar_t *wcscpy( wchar_t *strDestination, const wchar_t *strSource );
unsigned char *_mbscpy( unsigned char *strDestination, const unsigned char *strSource );
因为我查了 MS 2005 版本的说明,竟然没有 strcpy 函数
之后的版本要使用
wchar_t *wcscpy( wchar_t *strDestination, const wchar_t *strSource );
unsigned char *_mbscpy( unsigned char *strDestination, const unsigned char *strSource );
因为我查了 MS 2005 版本的说明,竟然没有 strcpy 函数