5个回答
展开全部
#include <stdio.h>
main()
{
char str[20];
int i, j;
printf("please input a string:");
scanf("%s", str);//输入字符串
for(j = 0; j < 20; j++)
{
if(str[j] != '\0')
{
i++;
}
else
{
break;
}
}
printf("The length of the string is %d", i);//输出
}
main()
{
char str[20];
int i, j;
printf("please input a string:");
scanf("%s", str);//输入字符串
for(j = 0; j < 20; j++)
{
if(str[j] != '\0')
{
i++;
}
else
{
break;
}
}
printf("The length of the string is %d", i);//输出
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include
int
main()
{
int
i;
char
a[100];
gets(a);
for(i=0;a[i]!='\0';i++);
printf("%d\n",i);
return
0;
}
int
main()
{
int
i;
char
a[100];
gets(a);
for(i=0;a[i]!='\0';i++);
printf("%d\n",i);
return
0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include
main()
{
char
str[20];
int
i,
j;
printf("please
input
a
string:");
scanf("%s",
str);//输入字符串
for(j
=
0;
j
<
20;
j++)
{
if(str[j]
!=
'\0')
{
i++;
}
else
{
break;
}
}
printf("The
length
of
the
string
is
%d",
i);//输出
}
main()
{
char
str[20];
int
i,
j;
printf("please
input
a
string:");
scanf("%s",
str);//输入字符串
for(j
=
0;
j
<
20;
j++)
{
if(str[j]
!=
'\0')
{
i++;
}
else
{
break;
}
}
printf("The
length
of
the
string
is
%d",
i);//输出
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int mystrlen (char * s)
{
char * p = s ;
while (*p++ != '\0') ;
return (p - s - 1) ;
}
{
char * p = s ;
while (*p++ != '\0') ;
return (p - s - 1) ;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询