c语言如何求字符串长度?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言如何求字符串长度?相关的知识,希望对你有一定的参考价值。

参考技术A 我的方法和楼上的大同小异用指针法:#include "stdio.h"\\x0d\\x0avoid main()\\x0d\\x0achar str[128];
char * p;
int count=0;
p=str;
gets(str);
while(*p++!=\'\0\')
count++;
printf("%d",count);
非指针法(这个方法是调用系统函数,比之自己写的函数简单明了):#include "stdio.h"\\x0d\\x0a#include "string.h"\\x0d\\x0avoid main()\\x0d\\x0achar str[128];
gets(str);
printf("%d",strlen(str));

以上是关于c语言如何求字符串长度?的主要内容,如果未能解决你的问题,请参考以下文章

如何在c语言中计算字符串长度

C语言字符串长度如何数?

c语言求字符串长度

c语言字符串的长度怎么看

c语言 计算字符串长度

c语言求数组长度strlen