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.47 Rating (157 Votes )
There are 3 Steps involved in it
To solve this problem we will write a C program consisting of three functions upper lower and reverse Each function will modify a Cstring according to ... View full answer
Get step-by-step solutions from verified subject matter experts
