#include "stdio.h"#include "conio.h"#include "string.h"void prochar(char *str,char c){ char *p; for(p=str;*p!='\0';p++) if(*p!=c) *str++=*p; *str='\0';}void main(){ char str[80],char_c; gets(str); scanf("%c",&char_c); prochar(str,char_c); puts(str); getch();}