C语言字符串长度函数是怎么计算字符的长度的?
4个回答
展开全部
字符串a的长度为:9
Press any key to continue
#include <stdio.h>
int main()
{
int len=0;
char a[]="how long?";
char *p;
p=a;
while (*p)
{
len++;
p++;
}
printf("字符串a的长度为:%d\n",len);
return 0;
}
Press any key to continue
#include <stdio.h>
int main()
{
int len=0;
char a[]="how long?";
char *p;
p=a;
while (*p)
{
len++;
p++;
}
printf("字符串a的长度为:%d\n",len);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//给定字符串"hello world",如何计算出它的实际有效字符的长度。
#include<stdio.h>
int main()
{
int len=0;int i=0;
char array[]="hello world";
while(array[i])
{
len++;
i++;
}
printf("%d",i);
}
#include<stdio.h>
int main()
{
int len=0;int i=0;
char array[]="hello world";
while(array[i])
{
len++;
i++;
}
printf("%d",i);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-06-16
展开全部
unsigned int strlen(const char *str)
{
unsigned int len=0;
while(str[len]) ++len;
return len;
}
{
unsigned int len=0;
while(str[len]) ++len;
return len;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询