用递归的方法求字符串长度的函数

日期:2011-05-27 15:23:47 人气:2

用递归的方法求字符串长度的函数

int string_length(char * string) { if(!string) return 0; if(*string) return string_length(string + 1) + 1; else return 0; }
    A+
热门评论