c++求字符串长度的函数
时间: 2024-05-03 08:18:40 浏览: 105
C++ 中可以使用 `strlen()` 函数来求字符串的长度,该函数需要引入 `<cstring>` 头文件。示例代码如下:
```c++
#include <iostream>
#include <cstring> // 引入头文件
using namespace std;
int main() {
char s[] = "hello world";
int len = strlen(s);
cout << "字符串长度为:" << len << endl;
return 0;
}
```
输出结果为:字符串长度为:11。
阅读全文