Question: need help please. I must complete the line in the prompt below. Problem A string array has been created to store the distinguished guest doctors
Problem A string array has been created to store the distinguished guest doctors in attendance at an elite social event. When initializing this array, the title "Dr. was accidentally stored along with each guest's last name. This array was declared as follows string honoredGuests[] "Dr. Evans". "Dr. Yousef. "D. Perkins Dr. Castillo", "Dr. Matsuda" Using the string library's substring and length functions remove the title of "Dr." from each array element. As an example, honoredGuests O] will now store the value "Evans after processing; honoredGuests[1] will store "Yousef, etc. Implementation Declare the honoredGuests[) array, as written, in mainO. You must define a void function, removePrefoxD. which processes each array element inside a loop. Points will be deducted if a loop is not used Here is a partial function definition for you to use: void removePrefixlstring guests]. int guestNumber) for (int i 0 i guestNumber; i++) guestslil this line Results In main), after the call to removePrefix) has been made, output the newly-processed array elements in a loop. Your output will look like this: Honored Guests Evans Yousef Perkins Castillo Matsuda
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
