Question: QUESTION 1 Please create a user-defined function that searches for a string in a string array. 1. The function takes three parameters: string array, int

QUESTION 1 Please create a user-defined function that searches for a string in a string array. 1. The function takes three parameters: string array, int array Size, and string word 2. The function will loop through the string array. If word is found in the array, return the matched element's position index) in the array. Otherwise, return -1. 3. When a match is found in the array, the loop should be terminated at the time --- no need to continue the loop. 4. If no match is found, the function should display all elements in the array, as well as the search word. 5. Please make sure the function cannot modify any data in the array
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
