使用递归在C中查找字符串的长度

时间:2011-04-16 09:12:25

标签: c

帮我在递归方法中编写一个c程序,找到字符串的长度

int strlen(char s[])

我目前的代码:

#include<stdio.h>
#include<string.h>

int string_length(char s[]);

main()
{
   char s[50];
   int l;

   printf("Enter the string\n");
   scanf("%s",s);
   l=strlen(s);
   printf("Length of string = %d\n",l);
}

int string_length(char s[])
{
   int i;

   i=0;
   while(s[i] != '\0')
   ++i;
   return i;
}

0 个答案:

没有答案