题目内容
以下程序的功能是输入一个字符串和一个字符,如果该字符在字符串中,就从该字符首次出现的位置开始输出字符串中的字符。请填空。______match(char *s,char ch){ while(*s!='\0') if(*s==ch) ______; else s++; ______;}int main(void){ char ch,str[80],*p=NULL; printf("Please Input the string\n:"); scanf("%s",str); getchar(); ch=getchar(); if((p=match(str,ch))!=NULL)printf("%s\n",p); else printf("Not Found\n"); return 0;}
查看答案
搜索结果不匹配?点我反馈