int strlen( const char *str ) //输入参数const 以下是引用片段: { assert( strt != NULL ); //断言字符串地址非0 int len=0; //注,一定要初始化。 while( (*str++) != '\0' ) { len++; } return len; }
by: 发表于:2017-08-08 11:14:19 顶(0) | 踩(0) 回复
??
by: 发表于:2017-08-08 11:14:19 顶(0) | 踩(0) 回复
??
回复评论