Create a C program that do the following: Create a function named readArray, that takes as argument an 2D array, row and
Posted: Sat May 14, 2022 7:41 pm
Create a C program that do the following: Create a function named readArray, that takes as argument an 2D array, row and column of the array, the function should prompt the user to enter the value for each element of the array. • Create a function named printArray, that takes as argument an 2D array, row and column of the array, the function should print the array elements in tabular format. Create a function named maxArray, that takes as argument an 2D array, row and column of the array, the function should return the maximum elements of the array.