I'm asked to write a program that takes as input a char value and
returns true if the character is uppercase; otherwise, it returns false..
so far I've made the definition of the function but I don't know how to get it's output on the screen through int main..could you help guys?thanks
bool uppercaseLetter(char ch)
{
cout<<"Enter a character"<<endl;
cin>>ch;
if (isupper(ch))
return true;
else
return false;
}