c语言习题。。。 编写函数int sLen(char*s),函数功能计算字符串s的长度...
发布网友
发布时间:2024-10-24 09:46
我来回答
共1个回答
热心网友
时间:3小时前
#include <stdio.h>
int sLen(char *s)
{
int i;
for(i=0;s!=NULL && *s!='\0';i++)
{
s++;
}
return i;
}
int main()
{
char buf[] = "abcdefg";
printf("%d\n", sLen(buf));
return 0;
}