void fun(char *str,int i)//删除字符数组str中str[i]字符 { for(int j=i;str[j+1]!='\0';j++) str[j]=str[j+1]; str[j]='\0'; }