高手解答一下 拜托为什么字符串遇到空格就不要在判断了
为什么字符串遇到空格就不要在判断了这个代码
#include<stdio.h>
void main()
{
char str[100];
char *p;
int word=0, space=0, digit=0, other=0;
printf("please input the string:");
scanf("%s", str);
p=str;
while(*p!='\0')
{
if(*p==' ')
space++;
else if(*p<='9' && *p>='0')
digit++;
else if((*p<='z'&&*p>='a') || (*p<='Z'&&*p>='A'))
word++;
else
other++;
p++;
}
printf("world is %d", word);
printf("space is %d", space);
printf("digit is %d", digit);
printf("the other is %d", other);
}
为什么判断不了空格这个;遇到空格就直接返回结果了