VC++6.0求一个字符串的长度
/*----------------------------------------------
功能:写一个函数,
求一个字符串的长度,在main()函数中输入字符串,
并输出其长度
------------------------------------------------*/
#include <stdio.h>
#include <conio.h>
int length(char *p)
{
int n;
n=0;
while(*p!='\0')
{
n++;
c++求字符串长度p++;
}
return n;
}
void main()
{
int len;
char str[20];
printf("please input a string: \n");
scanf("%s",str);
len=length(str);
printf("the string has %d charaters.\n",len);
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论