#include stdio.h

int main() {
char ch = 'A';

if (ch = 'A' && ch = 'Z') {
printf("%c is an uppercase letter.\n", ch);
} else {
printf("%c is not an uppercase letter.\n", ch);
}

return 0;
}

Find the output of the following program

Posted on by