strlen函数头文件c++
时间: 2023-12-17 21:02:50 浏览: 656
C++,字符串方法strlen.pdf
在C++中,strlen函数的头文件是cstring。需要在代码中添加以下语句才能使用strlen函数:
```cpp
#include <cstring>
```
以下是一个使用strlen函数的C++代码示例:
```cpp
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char str[] = "Hello, world!";
int len = strlen(str);
cout << "Length of string is: " << len << endl;
return 0;
}
```
阅读全文