C Program to Remove all Characters in a String Except Alphabets

To understand this example, you should have the knowledge of the following C programming topics:


Remove Characters in String Except Alphabets

Output

Enter a string: p2'r-o@gram84iz./
Output String: nodmek

This program takes a string input from the user and stores in the line variable. Then, a for loop is used to iterate over characters of the string.

If the character in a string is not an alphabet, it is removed from the string and the position of the remaining characters are shifted to the left by 1 position.