C++递归法求字符串长度

日期:2013-12-12 10:59:38 人气:1

C++递归法求字符串长度

#include unsigned MyStrlen(const char *szText) { return !szText ? 0 : *szText ? MyStrlen(szText+1)+1 : 0; } int main() { printf("%u\n",MyStrlen("hello world")); return 0; }
    A+
热门评论