请编写一个函数fun,其功能是:统计一行字符串中单词的个数,作为函数值返回.规定单词由小写字母组成,单词之间允许若干个空格隔开.一行开始没有空格.数字还有大写字母什么的不在统计范围里.#include #include #define N 80int fun( char *s){}main(){ char line[N]; int num=0;printf("Enter a string :\n"); gets(line);num=fun( line );printf("The number of word is :%d\n\n",num);}

问题描述:

请编写一个函数fun,其功能是:统计一行字符串中单词的个数,作为函数值返回.规定单词由小写字母组成,单词之间允许若干个空格隔开.一行开始没有空格.
数字还有大写字母什么的不在统计范围里.
#include
#include
#define N 80
int fun( char *s)
{
}
main()
{ char line[N]; int num=0;
printf("Enter a string :\n"); gets(line);
num=fun( line );
printf("The number of word is :%d\n\n",num);
}