Delete all occurrences of character from the string

C program to delete all occurrences of character from the string.

Program

#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<stdlib.h>
#define MAX 50

void main()
{
	char str[MAX], ch;
    int i, j, len, pos;

    printf("Enter the string\t:");
    gets(str);
    printf("Enter the character that is to be deleted\t:");
    scanf("%c",&ch);

    len = strlen(str);

    for(i=0;i<len;i++)
    {
        if(ch == str[i])
        {
            pos = i+1;
            for(j=pos-1;j<len;j++)
            {
                str[j] = str[j+1];
            }
            len = len-1;
            i--;
        }
    }

    str[len] = '\0';

    printf("\nModified string\t:%s",str);

    getch();
}

Output

Enter the string        :welcome to coursecrux.com
Enter the character that is to be deleted       :c

Modified string :welome to ourserux.om