int fun(char s[],int c){
int i,j=0;
for(i=0;s[i]!='\0';i++)
if(s[i]!=c)
{
s[j]=s[i];
j++;
}
s[j]='\0';
return 0;}
加上其它代码,运行结果: