Question: The function takes three parameters: string array, int arraySize, and string word The function will loop through the string array. If word is found in
- The function takes three parameters: string array, int arraySize, and string word
- The function will loop through the string array. If word is found in the array, return the matched elements position (index) in the array. Otherwise, return -1.
- When a match is found in the array, the loop should be terminated at the time --- no need to continue the loop.
- If no match is found, the function should display all elements in the array, as well as the search word.
- Please make sure the function cannot modify any data in the array.
USE C++
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
