Question: finish up the code: main() readArray (int&, char[]); displayArray(int, char[]); deleteElement(int&, char[], int); insertElement(int&, char[], char, int); int countOccurences(int, char[], char); Here it is the
finish up the code:
main() readArray (int&, char[]); displayArray(int, char[]); deleteElement(int&, char[], int); insertElement(int&, char[], char, int); int countOccurences(int, char[], char);
Here it is the started code: https://codeboard.io/projects/77845
2. Add the following function to the project: bool findElement(int, char[], char); where the first 2 parameters represent the size of the array and the array of char-s, and the 3rd parameter represents the letter that is to be searched in the array. If found the function will return 'true' otherwise it will return 'false'.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
