#include<stdio.h>
#include<stdlib.h>
int length( char *p)
{
int i;
i=0;
while(*p!='\0')
{
i++;
p++;
}
return(i);
}
int main ()
{
char str[20];
int l;
printf("input string:");
scanf_s("%s",str);
l=length(str);
printf("the length of string is :%d",l);
system("pause");
return 0;
}
来虐小学生
相关分类