Question: Write a program in C++ which takes a char as input, and, if the char is an uppercase letter, prints the lowercase version of the
Write a program in C++ which takes a char as input, and, if the char is an uppercase letter, prints the lowercase version of the same letter. For example,

Hint: Use if() and else() statements.
Enter a character:F Your character in lowercase is f. If the character is not an uppercase letter, do not convert anything. For example Enter a character: g Your character is either already lowercase or not a letter
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
