填空题 请补充main函数,该函数的功能是:从键盘输入一个字符串及一个指定字符,然后把这个字符及其后面的所有字符全部删除。 例如,输入"abcdef",指定字符为"e",则输出"abcd"。 注意:部分源程序在文件BLANK1.C 中 。 请勿改动 main 函数和其他函数中的任何内容,仅在 main 函数的横线上填入所编写的若干表达式或语句。 #include
#include
#define N 80 void main() { int i=0; char str[N]; char ch; system("CLS"); printf("\n Input a string:\n"); gets(str); printf("\n Input a charator;\n"); scanf("%c", &ch); while(str[i]!='\0') { if(str[i]==ch) 【1】 【2】; } str[i]=【3】; printf("\n*** display string***\n"); puts(str); }