#include <stdio.h>
#include <ctype.h>

int main() {
    char ch;
    printf("enter a character to check whether it is alphabet or not: ");
    scanf("%c",&ch);
    if(isalpha(ch)){
        printf("\nthe character is an alphabet");
    }
    else{
        printf("\nthe given character is not an alphabet");
    }
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: