Question: In C++ please- A two-dimensional array is an array of one-dimensional arrays. For example, int arr_2D[2][5] is an array with 2 elements which are themselves
In C++ please-
A two-dimensional array is an array of one-dimensional arrays.
For example, int arr_2D[2][5] is an array with 2 elements which are themselves integer arrays of size 5. It is common to refer to the size of a 2-D array using rows and columns. In this example, arr_2D has 2 rows and 5 columns, and each row is an array of 5 integers.
The following program allows the user to enter a 2D matrix (basically a 2D array of integers) and display it. Compile and run the following program to understand what it does.

Modify the provided program to compute the minimum of the elements across rows and columns. Display minimum values with a suitable message. You may use two 4 nested loops in the program one to find the minimum value in each row and the other to find the minimum value is each column.
#include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
