Predict the output:
#includestdio.h

int main() {
char ch;
ch = 'P','b','M','d';
if(ch='A'&& ch='Z')
{
printf("uppercase");
}
else if(ch='a'&& ch='z')
{
printf("lowercase");
}
else
{
printf("incorrect input ");
}
}

Posted on by