码迷,mamicode.com
首页 > 其他好文 > 详细

多种方法求字符串长度

时间:2016-03-23 06:49:07      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:include   字符串长度   hello   world   count   

方法一:

#include<stdio.h>
#include<string.h>
int main()
{
	int count=0;
	char a[]="hello world !";
    while(a[count]!=‘\0‘)
	{
		count++;
	}
	printf("%d\n",count);
	return 0;
}

方法二:

#include<stdio.h>
int main()
{
	int strlen=0;
	char *p;
	char a[]="hello world !";
	p=a;
	while(*p!=0)
	{
		p++;
	}
	strlen=p-a;
	printf("%d\n",strlen);
	return 0;
}

方法三:

#include<stdio.h>
int my_strlen(char *a)
{
	if(*a==‘\0‘)
		return 0;
	else
		return 1+my_strlen(a+1);
}
int main()
{
	int ret=0;
	char arr[]="hello world !";
	ret=my_strlen(arr);
	printf("%d\n",ret);
}


本文出自 “sunshine225” 博客,请务必保留此出处http://10707460.blog.51cto.com/10697460/1754036

多种方法求字符串长度

标签:include   字符串长度   hello   world   count   

原文地址:http://10707460.blog.51cto.com/10697460/1754036

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!