c语言实现,统计一句英文句子中某个单词出现的次数。
c语言实现,统计一句英文句子中某个单词出现的次数。
日期:2016-03-17 13:13:21 人气:1
#include
int FindWord(char*,char*);
void main()
{
char allstr[100];
char findstr[20];
puts("input all word:");
gets(allstr);
puts("input one word:");
gets(findstr);
printf(" number of %s is :%d\n",fin