【C语言初阶】使用指针求字符串长度(五个版本盘点总结) C语言中有多种方法可以求字符串的长度。一种常见的方法是使用内置函数`strlen`来求字符串的长度,该函数在C语言中是自带的。我们只需要包含`<string.h>`头文件,并调用`strlen`函数即可。另外,我们也可以自己编写函数来求字符串的长度。有多种实现方式,比如使用临时变量、指针减指针和递归等。具体代码实现如下: 方法一:调用内置函数strlen求字符串长度 “`c #include <stdio.h> #include <string.h> int main() { char s[] = “abc”; int len = strlen(s); printf(“%d”, len); return 0; } “` 方法二:创建临时变量计算字符串长度 “`c #include <stdio.h> int my_strlen(char* str) { if(*str != ‘0’) { return 1 + my_strlen(str + 1); } else { return 0; } } int main() { char s[] = “abc”; int len = my_strlen(s); printf(“%d”, len); return 0; } “` 方法三:指针减指针求字符串长度 “`c #include <stdio.h> int my_strlen(char* str) { int count = 0; while(*str != ‘0’) { count++; str++; } return count; } int main() { char s[] = “abc”; int len = my_strlen(s); printf(“%d”, len); return 0; } “` 方法四:不创建临时变量计算字符串长度(递归) “`c #include <stdio.h> int my_strlen(char* str) { if(*str == ‘0’) { return 0; } else { return 1 + my_strlen(str + 1); } } int main() { char s[] = “abc”; int len = my_strlen(s); printf(“%d”, len); return 0; } “`
2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/48010.html