Question: Write a function , reverseCaps, that converts any character in a string from Uppercase to Lowercase and vice versa. Hint: There is a difference of
Write a function , reverseCaps, that converts any character in a string from Uppercase to Lowercase and vice versa. Hint: There is a difference of 32 characters between uppercase and lowercase letters. Example:
Input a word: Holiday Converted to: hOLIDAY
#include
using namespace std;
// Link to ASCII table: http://w...content-available-to-author-only...e.com/
void reverseCaps(char[]);
int main() {
char text[20];
cout << "Input a word:";
cin >> text;
cout << text;
reverseCaps(text);
cout << "Converted to: " << text;
return 0;
}
// your code goes here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
