#include
int GetLen(char * str);
void main()
{
char * str;
int count=0;
printf("请输入需计算长度字符串:\n");
scanf("%s",str);
count=GetLen(str);
printf("%d\n",count);
}
int GetLen(char * str)
{
int count=0;
for(str;(*str)!='\0';str++)count+=1;
return count;
}
运行环境是 Turbo C
我也是初学,互相学习哈。
int howlong(char *h)
{
char *p;
int i;
p=h;
for(i=0;*p!='\0';p++)i++;
return i;
}
void main()
{
char a[81];
printf("请输入字符串:\n");
gets(a);
printf("字符串长度是:%d\n",howlong(a));
}
int length(a[])
{
int i=0,*p=a;
while(*p)
{
p++;
i++;
}
return i
}