14、求一个字符串的长度
作者:互联网
/*
求一个字符串的长度
*/
#include <stdio.h>
#include <stdlib.h>
int strLen(char *pStr)
{
char *p = pStr;
int Length = 0;
while(*p != '\0')
{
++ p;
++ Length;
}
return Length;
}
int main()
{
char str[100];
scanf("%s",str);
printf("%d",strLen(str));
return 0;
}
标签:pStr,return,14,int,char,Length,str,字符串,长度 来源: https://www.cnblogs.com/buwenliunian/p/15321808.html