write a program in c to check whether a letter is uppercase or not 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;
}