码迷,mamicode.com
首页 > 编程语言 > 详细

数据结构与算法-字符串写出一个strlen函数

时间:2017-03-15 15:11:44      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:算法   blog   size   class   函数   null   参数   logs   str   

写出一个strlen函数

int strlen( const char *str ) //输入参数const
{
 assert( str != NULL ); //断言字符串地址非0
 int len=0;
 while( (*str++) != ‘‘ )
 {
  len++;
 }
 return len;
}

数据结构与算法-字符串写出一个strlen函数

标签:算法   blog   size   class   函数   null   参数   logs   str   

原文地址:http://www.cnblogs.com/sunziying/p/6553982.html

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