The C++ program that prompts the user to enter an uppercase letter and converts it to a lowercase letter is:
#include <iostream>
using namespace std;
int main()
{
char ch;
cout<<"Enter a character in lowercase: ";
cin>>ch;
ch=ch-32;
cout<<"Entered character in uppercase: "<<ch;
return 0;
}
The above program is written in C++ program and it asks for input from the user in upper case and then converts it to lowercase letters.
If there is any input other than a letter, an upper case letter, an error would be given.
Some other variables that would be rejected are:
Read more about C++ programs here:
https://brainly.com/question/20339175
#SPJ1