删掉这语句,程序也可以正常运行(初学者)
#include"stdio.h"int c;
main()
{
char string[100],ch,*p,*small();
printf("input a string;\n");
gets(string);
printf("input the character:\n");
ch=getchar();
p=small(ch,string);
if(p)
printf("%s %d\n",p,(c+1));
else
printf("no match found");
getch();
}
char *small(char cha,char *s)
{
c=0;
while(cha!=s[c]&&s[c]!='\0')/*这里*/
c++;
if(s[c])
return(&s[c]);
return 0;
}
程序功能:在读入一个字符串中查找一个给定的字符,如果找到,则从该字符开始输出余下的字符串,以及该字符是字符串的第几个字符。否则输出“no match found”
我上机时把注释处的 &&s[c]!='\0' 删掉,但程序依然正常可以运行,那么删掉的语句的作用是.....