讨论数组问题
#include <stdio.h>main()
{
char st[80];
int i, num=0, word=0;
char c;
gets(st);
for (i=0; (c=st[i])!='\0'; i++)
if(c=='')
word=0;
else if(word==0)
{
word=1;
num++;
}
printf("there are %d words in the line\n", num);
} 这道题是统计出输出的有多少个单词....
我是在WIN-TC下运行的.我输出了几次不同单词,但是怎么输,答案都是1个单词 ...是为什么???
else if(word==0)
{
word=1;
num++; 这个地方我也有点没通.....请高手指点一下.....能不能给我讲解清楚
谢谢!!!!