c++如何求字符串长度
时间: 2023-08-11 10:23:17 浏览: 271
C++不使用变量求字符串长度strlen函数的实现方法
在 C++ 中,可以使用 `strlen` 函数来求一个字符串的长度。该函数需要包含 `cstring` 头文件。例如:
```c++
#include <cstring>
int main() {
char str[] = "Hello, world!";
int len = strlen(str);
std::cout << "The length of the string is: " << len << std::endl;
return 0;
}
```
输出结果为:
```
The length of the string is: 13
```
阅读全文