error: 'strlen' was not declared in this scope|
时间: 2023-10-14 14:06:12 浏览: 23
strlen与strcpy-软件逆向资料
这个错误提示意味着在当前作用域中找不到"strlen"的声明。"strlen"是一个C语言中的函数,用于计算字符串的长度。要解决这个错误,你需要包含头文件<string.h>,它声明了"strlen"函数。在代码中添加以下行:
```c++
#include <string.h>
```
这样就可以解决该错误并正确使用"strlen"函数了。
阅读全文