Write a C program to check whether a character is uppercase or lowercase alphabet. code example
Example: check if character is uppercase c
int isUpper(char c) {
// check if the argument is the uppercase bound
if (c >= 'A' && c <= 'Z') return 1;
else return 0;
}