c++怎么求字符串长度
时间: 2024-06-13 19:07:51 浏览: 193
在C++中,可以使用标准库中的`strlen()`函数来求字符串长度。该函数需要传入一个指向字符串的指针作为参数,返回该字符串的长度,不包括字符串末尾的空字符`\0`。
以下是一个示例代码:
```c++
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char str[] = "hello world";
int len = strlen(str);
cout << "The length of the string is: " << len << endl;
return 0;
}
```
输出结果为:
```
The length of the string is: 11
```
阅读全文