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

运用递归编写strlen函数实例

时间:2014-11-22 10:41:55      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   strong   on   

代码如下:

#include <stdio.h>

int Strlen(const char *s)
{
	if( NULL == s)
		return -1;
	if('\0' == *s)
		return 0;
	else
		return Strlen(s+1)+1;
}

int main()
{
	printf("Strlen(\"123\")=%d\n",Strlen("123"));
	
	return 0;
} 


输出结果:

bubuko.com,布布扣


分析过程:

bubuko.com,布布扣

运用递归编写strlen函数实例

标签:style   blog   http   io   ar   color   sp   strong   on   

原文地址:http://blog.csdn.net/dezhihuang/article/details/41378765

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