Question: Problem 2. Write a C++ program to interchange the rows of a matrix to columns. The program asks the user to enter the number of

Problem 2. Write a C++ program to interchange the rows of a matrix to columns. The program asks the user to enter the number of elements to fill in each row and the number of elements to fill in each column of the matrix A. Then the program asks the user to enter all entries of the matrix A. The program then outputs the matrix A and the matrix B where the rows of B are the columns of A and the columns of B are the rows of A. For example, assume 1 2 3 L4 56 Then [1 4 B=12 5 3 6 the output of the program is 1 2 3 4 5 6 1 4 2 5 3 6 Note: Assume the size of the matrix A and B large enough, say 20 20
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
