error: 'strlen' was not declared in this scope|
时间: 2023-07-09 21:14:41 浏览: 183
C语言:strlen库函数使用
这个错误通常是因为没有正确包含字符串头文件 `string.h` 或者 `cstring`。请确保在程序中包含了正确的头文件,例如在程序中加入以下代码:
```c++
#include <string.h>
```
或者
```c++
#include <cstring>
```
这样就可以使用 `strlen` 函数了。
阅读全文