黑马程序员技术交流社区

标题: 返回字符串s的字符长度 [打印本页]

作者: 栗海云    时间: 2016-5-15 22:08
标题: 返回字符串s的字符长度
编写一个int string_len(char *s),返回字符串s的字符长度(不包括\0)
作者: IOS菜鸟!    时间: 2016-5-15 23:25
char * s;
int count=0;
while(s!='\0')
{
count++;
}
printf("%d\n",count);




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2