Computer Science, asked by amandeepsingh1929, 10 months ago

14. Write a program to input a 3*3 integer matrix i.e. a double dimension array and find the transpose matrix.Transpose matrix is obtained by converting the rows of original matrix to column or columns into rows. For example,if the given matrix is: 1 2 3 7 6 8 1 7 11 OUTPUT: Transpose Matrix is: 1 7 1 2 6 7 3 8 11 Programs 15-20 will be added to the project when the school reopens and remaining portion is done. =================================================

Answers

Answered by Anonymous
0

Explanation:

note: the first loop will print the original matrix and the second loop will print the transpose matrix.

note: there are 2 methods to find the transpose matrix.

only one I have done .

i.e by reversing the variable in the print statement which is done here.

Attachments:
Similar questions