strlen c++使用例子
时间: 2023-11-12 12:57:42 浏览: 158
strlen函数是C++中用于计算字符串长度的函数。下面是一个使用strlen函数的例子:
#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: 12
相关问题
strlen函数使用例子
strlen函数用于计算字符串的长度,其使用方法如下:
```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: 12
```
其中,`strlen()`函数需要包含头文件`<cstring>`,并且接受一个`const char*`类型的参数,返回一个`size_t`类型的值,表示字符串的长度。在上述例子中,我们定义了一个字符串`str`,并使用`strlen()`函数计算其长度并输出。
strlen用法c++
在C++中,strlen是一个用于计算字符串长度的函数。它的用法如下:
```cpp
#include <cstring>
int main() {
const char* str = "Hello, World!";
int length = strlen(str);
return 0;
}
```
在上面的例子中,我们包含了头文件`<cstring>`,然后声明了一个指向字符串的指针`str`,并将其初始化为"Hello, World!"。然后,我们使用strlen函数来计算字符串的长度,并将结果存储在变量`length`中。
需要注意的是,strlen函数返回的是一个无符号整数类型(size_t),表示字符串的长度。如果字符串为空,则返回0。
阅读全文