C Program to Check Whether a Character is Alphabet or Not

In this C program, we will learn about how to check whether number is alphabet or not.

Required Knowledge


C program to check whether a character is alphabet or not

#include <stdio.h>  
  
int main() {  
    char character;
    printf("Enter a Character\n");  
    scanf("%c", &character);  
      
    if((character >= 'a' && character <= 'z')||
        (character >= 'A' && character <= 'Z')){
        printf("%c is an Alphabet\n", character);  
    } else {  
        printf("%c is Not an Alphabet\n", character);  
    }
  
    return 0;  
}
Output
Enter a Character
H
H is an Alphabet
Enter a Character
&
& is Not an Alphabet

C program to check whether a character is alphabet or not using isalpha function

#include <stdio.h> 
#include <ctype.h> 
  
int main() {  
    char character;

    printf("Enter a Character\n");  
    scanf("%c", &character);  
      
    if(isalpha(character)) {  
        printf("%c is an Alphabet\n", character);  
    } else {  
        printf("%c is Not an Alphabet\n", character);  
    }
  
    return 0;  
}
Output
Enter a Character
g
g is an Alphabet
Enter a Character
+
+ is Not an Alphabet
Related Topics
C program to find product of digits of a number using while loop
C Program to Check Whether an Alphabet is Vowel or Consonant using Switch Case Statement
C Program to Check Whether a Number is Odd or Even Number using Switch Case Statement
C Program to Check a Number is Odd or Even Using Conditional Operator
C Program to Check Whether an Alphabet is Vowel or Consonant
C Program to Check a Number is Palindrome or Not
C Program to Check Whether a Number is Prime or Not
C Program to Check a String is Palindrome
C Program to Check If Two Strings are Anagram
List of all C programs