Question
Write a program with three functions: Upper, lower, and reverse. The upper function should accept C-string as an argument. It should step through all the
Write a program with three functions:
Upper, lower, and reverse. The upper function should accept C-string as an argument. It should step through all the characters in the string, converting each to uppercase. The lower function, too, should accept a pointer to a C-string as an argument. It should step through all the characters in the string, converting each to lowercase. Like upper and lower, reverse should also accept a C-string. As it steps through the string, it should test each character to determine whether it is upper or lowercase, it should be converted to lowercase. If a character is lowercase, it should be converted to uppercase.
Test the functions by asking for a string in function main, then passing it to them in the following order: reverse, lower, and upper.
Step by Step Solution
3.40 Rating (153 Votes )
There are 3 Steps involved in it
Step: 1
include using namespace std void reversechar c int i 0 wh...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Document Format ( 2 attachments)
608f967cc94f4_21153.pdf
180 KBs PDF File
608f967cc94f4_21153.docx
120 KBs Word File
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started