TUT 3. Write a C++ program as follows: 1. write the function string toupper( const string& s) which constructs the upper
Posted: Fri May 20, 2022 12:35 pm
TUT 3. Write a C++ program as follows: 1. write the function string toupper( const string& s) which constructs the uppercase version of the the strings and returns it; 2. write the main() function with a while loop where (a) ask the user Enter a string: (b) use the function above function to construct and print the uppercase string.