C語言求其字元陣列的長度

hou_sky發表於2012-12-19

求其字串的長度DEMO


#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
/*求字元陣列s的長度,引數為字元陣列*/
int mystrlen(const char s[])
{
	int i=0;
	if (s==NULL)
	{
		return 0;
	}
	
	while(s[i]!='\0')
	{
		++i;
	}
	return i;
}
/*指標實現求其長度*/
int pointer_strlen(const char* str)
{
	const char *user_str=str;
	if (NULL==str)
	{
		return 0;
	}
	while(*user_str++)
	{
		;
	}
	return (int)(user_str-str-1);
}
int main(void)
{
	char s[]="hello,world";
	char *ss=(char*)malloc(sizeof(char)*256);
	gets(ss);
	printf("ss陣列的內容是:%s\n",ss);
	printf("ss的長度是%d\n",pointer_strlen(ss));
	printf("ss的長度是%d\n",mystrlen(ss));
	printf("s陣列的內容是:%s\n",s);
	printf("s的長度是%d\n",pointer_strlen(s));
	printf("s[]的長度是%d\n",mystrlen(s));
	getch();
	return 0;
}


相關文章