c语言strlen函数用法
时间: 2023-09-25 11:16:39 浏览: 100
C语言中的strlen函数用于计算一个字符串的长度,即该字符串中字符的个数(不包括字符串末尾的空字符'\0')。它的函数原型为:
```c
size_t strlen(const char *str);
```
其中,str为需要计算长度的字符串。
使用时,需要包含头文件<string.h>。例如:
```c
#include <string.h>
#include <stdio.h>
int main() {
char str[] = "Hello, world!";
printf("字符串长度为:%d\n", strlen(str));
return 0;
}
```
输出结果为:
```
字符串长度为:13
```
相关问题
c语言strlen函数的用法
strlen函数是C语言中的字符串函数之一,用于计算字符串的长度。其原型如下:
```c
#include <string.h>
size_t strlen(const char *str);
```
其中,`str`是要计算长度的字符串。
下面是使用strlen函数的一个示例:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
int length = strlen(str);
printf("The length of the string is %d\n", length);
return 0;
}
```
输出:
```
The length of the string is 13
```
c语言strlen用法
strlen()函数是C语言中的一个字符串函数,用于计算字符串的长度。其用法如下:
```c
#include <string.h>
size_t strlen(const char *str);
```
其中,str为要计算长度的字符串,函数返回值为字符串的长度,不包括字符串末尾的空字符'\0'。
以下是一个使用strlen()函数的例子:
```c
#include <stdio.h>
#include <string.h>
int main() {
char str[50] = "Hello, world!";
int len = strlen(str);
printf("The length of the string is: %d\n", len);
return 0;
}
```
输出结果为:
```
The length of the string is: 13
```
阅读全文