Check whether the given character is an alphabet or not.

Check whether the given character is an alphabet or not.

A program to check whether the given character is an alphabet or not is discussed here. The ASCII values of lower case alphabets are from 65 to 90 and the ASCII values of upper case alphabets are from 97 to 122. A character is obtained as input from the user. If its ASCII value lies in the above-mentioned range, it can be displayed as an alphabet.

Check whether the given character is an alphabet or not

C program to check whether the character is an alphabet or not

@@coding::1@@


Check whether the given character is an alphabet or not

C program to check whether the character is an alphabet or not using ASCII values

@@coding::2@@


Check whether the given character is an alphabet or not

Recommended Programs








Check whether the given character is an alphabet or not

c