Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

C Program to Remove all Characters in a String Except Alphabet

#include<stdio.h>
int main(){
    char line[150];
    int i,j;
    printf("Enter a string: ");
    gets(line);
    for(i=0; line[i]!='\0'; ++i)
    {
        while (!((line[i]>='a'&&line[i]<='z') || (line[i]>='A'&&line[i]<='Z' || line[i]=='\0')))
        {
            for(j=i;line[j]!='\0';++j)
            {
                line[j]=line[j+1];
            }
            line[j]='\0';
        }
    }
    printf("Output String: ");
    puts(line);
    return 0;
}


This post first appeared on C Programs, please read the originial post: here

Share the post

C Program to Remove all Characters in a String Except Alphabet

×

Subscribe to C Programs

Get updates delivered right to your inbox!

Thank you for your subscription

×