代码:
int main()
{
char strDest[100] ;
char name[100];
cout << "请输入您的用户名: " << endl;
cin.getline(name, 100);
cout << display(strDest, name) << endl;
system("pause");
return 0;
}
char * display(char *strDest, const char * ptr)
{
strcpy(strDest, ptr);
strcat(strDest, ",您好!");
return strDest;
}
错误:
错误 1 error 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. f:\liubo\1\20170204e\20170204e\源.cpp 42 1 20170204e
老师,这是什么情况?换成strcpy_s报错
2 IntelliSense: 没有与参数列表匹配的 重载函数 "strcpy_s" 实例
参数类型为: (char *, const char *) f:\liubo\1\20170204e\20170204e\源.cpp 42 2 20170204e
首页上一页 1 下一页尾页 3 条记录 1/1页