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
To solve this problem you need to implement a C program with t... View full answer
Get step-by-step solutions from verified subject matter experts
Document Format (2 attachments)
608f967cc94f4_21153.pdf
180 KBs PDF File
608f967cc94f4_21153.docx
120 KBs Word File
