报错:error C2660: 'strcpy' : function does not take 3 parameters
strcpy只有两个参数,你传递了三个参数,报错啦
传三个的是strcpy_s,而且长度那个应该写中间
strcpy_s( char *strDestination, size_t numberOfElements, const char *strSource );