Predict the output:

#include stdio.h

int main() {
char ch;
printf("enter the character:");
scanf("%c",&ch);
if(ch='A'&& ch='Z')
printf("uppercase");
else if(ch='a'&& ch='z')
printf("lowercase");
else
printf("incorrect input ");
}

Posted on by