Question: C++ Write a program that asks the user to enter two names and stores them in string objects. It should then report whether or not,
C++
Write a program that asks the user to enter two names and stores them in string objects. It should then report whether or not, ignoring case, they are the same.
To help the program accomplish its task, it should use two functions in addition to main, upperCaseIt() and sameString(). Here are their function headers:
string upperCaseIt(string s) Boolean sameString (string s1, string s2)
The same string function, which receives the two strings to be compared, will need to call upperCaseIt for each of them before testing if they are the same. The upperCaseIt function should use a loop so that it can call the toupper function for every character in the string it receives before returning it back to the sameString function.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
