Program to Transpose a Matrix in c (Manipuri)

preview_player
Показать описание
Transpose of a matrix in C

Transpose of a matrix in C language:
This C program prints transpose of a matrix. To obtain it, we interchange rows and columns of the matrix. For example, consider the following 3 X 2 matrix:
1 2
3 4
5 6
Transpose of the matrix:
1 3 5
2 4 6
When we transpose a matrix, its order changes, but for a square matrix, it remains the same.

link for essential knowledge about Matrix:
Рекомендации по теме