Using string functions and all other programming features discussed in the class
ID: 3761158 • Letter: U
Question
Using string functions and all other programming features discussed in the class, write a program that will prompt a user to input their name (first and last). Ex: Please enter your first and last name: John Doe Then, output the string. Next, prompt the user to input their nickname. Ex: Enter your nickname: Rowdy Then modify the name string to consist of the person’s first name, nickname (in all caps, enclosed in double quotes) and last name. Then output the modified string. Ex: John “ROWDY” Doe NOTE: This program should loop, prompting the user to decide whether or not he or she wishes to enter another name. Ex: Do you wish to enter another name(y/n)? Using C++ code.