c语言编写函数求一个字符串长度
时间: 2024-01-20 20:04:02 浏览: 35
C语言编程-编写函数fun求一个字符串的长度,在main函数中输入字符串,并输出其长度;
5星 · 资源好评率100%
好的,以下是 C 语言的代码实现:
```c
#include <stdio.h>
int str_len(char s[]) {
int count = 0;
while (s[count] != '\0') {
count++;
}
return count;
}
int main() {
char s[] = "Hello, world!";
int len = str_len(s);
printf("The length of string is: %d\n", len);
return 0;
}
```
其中,`s` 为输入的字符串,`count` 为计数器,通过遍历字符串中的每一个字符,并判断是否为字符串结尾的`\0`字符,每遍历一次计数器自增 1,最后返回计数器的值即为字符串的长度。
在 `main` 函数中,我们定义了一个字符串 `s`,并调用 `str_len` 函数求出其长度,并将结果输出到控制台。
阅读全文