#include <stdio.h>
char a;



int main() {
    scanf("%c", &a);
    int b=(a>='a'&& a<='z')||(a>='A'&& a<='Z');
    if(b){
        printf("%c is a Alphabet", a);
    }
    else{ printf("%c is not a alphabet", a);}
    return 0;
}

Embed on website

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