/*-------------------------------------------------------
【程序改错】
---------------------------------------------------------
题目:下列给定程序中函数fun的功能是:删除s所指字符中所有的小写字母c 。
-------------------------------------------------------*/
#include <stdio.h>
void fun( char *s )
{
int i,j;
for(i=j=0; s[i]!='\0'; i++)
if(s[i]!='c')
/***********FOUND***********/
s[j++]=s[i];
/***********FOUND***********/
s[i]='\0';
}
main()
{
char s[80];
printf("Enter a string: ");
gets(s);
printf("The original string: ");
puts(s);
fun(s);
printf("The string after deleted : ");
puts(s);printf("\n\n");
}