error C2065: 'strcpy' : undeclared identifier
时间: 2023-07-29 20:14:51 浏览: 189
vs2012 error c4996: This function or variable may be unsafe
这个错误是因为在代码中使用了strcpy函数,但是没有包含头文件string.h。在C语言中,strcpy函数是定义在string.h头文件中的。因此,为了解决这个错误,你需要在代码中加入以下语句:
```
#include <string.h>
```
这样就可以让编译器知道strcpy函数的定义了。
阅读全文