#include <stdio.h>
#include <stdlib.h>
int main() {
char c = 'b';
if (isupper(c)) {
printf("%c is an uppercase letter", c);
} else {
printf("%c is not an uppercase letter", c);
}
return 0;