c++ 显示char类型数组长度
时间: 2024-01-28 19:05:14 浏览: 86
数组的定义-C++基本数据类型
你可以使用C++中的strlen函数来显示char类型数组的长度。strlen函数接受一个char类型数组作为参数,并返回该数组的长度,即字符数(不包括空字符'\0')。以下是一个例子:
```cpp
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char arr[] = "Hello, world!";
int len = strlen(arr);
cout << "The length of the array is: " << len << endl;
return 0;
}
```
输出将是:
```
The length of the array is: 13
```
阅读全文