Computer Science, asked by zaoman1354, 9 months ago

Write a program that will ask the user to enter a character. Check if it is alphabetic or not. If alphabetic, check whether it is in uppercase or lowercase

Answers

Answered by sitadevi14634479
0

Explanation:

#include<iostream.h>

void main ()

{char c;

cout<<"enter character:";

cin>>c;

if(isupper(c))

cout<<"uppercase":

else

cout<<"lowercase";

}

Similar questions