Question: Create an Array Helper Library as arrayHelper. h file First you will research on how to create a hile and how to use it in

Create an Array Helper Library as arrayHelper. h file First you will research on how to create a hile and how to use it in C program. The arrayHelper.h It will be used as the library and will have the functions. Finally create a demo.cpp file and use some of the functions demonstrate its use. // Functions for 1D array print1DArray(int*array, int size) reversePrint1DArray(int *array, int size) input1DArray(int *array, int size) searchIn1DArray(int *array, int size, int searchKey) findMax1DArray(int *array, int size) findMin1DArray(int *array, int size) copy1DArray(int *sourceArray,int *destinationArray, int size) sort1DArray(int *array, int size) //Functions for 2D array print2DArray(int **array, int row, int col) reversePrint2DArray(int **array, int row, int col) input2DArray(int **array, int int row, int col) searchIn2DArray(int **array, int row, int col, int searchKey) findMax2DArray(int **array, int row, int col) findMin2DArray(int **array, int row, int col) copy2DArray(int **sourceArray, int **destinationArray, int row, int col) //Submission will be on Teams using assignment submission Link
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
