#include <stdio.h>

int main() {
    char ch='A';
    printf("The character is %c\n",ch);
    printf("the value of character is %d\n",ch);

    if(ch>=97 && ch<=122){
        printf("The character is lowercase");
    }
    else{
        printf("The character is not lowercase");
    }
      return 0;
}

Embed on website

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