Tuesday, July 28, 2009

In C language find transpose of a matrix using arrays?

Just sets rows to columns and vice versa:





for (int i = 0; i %26lt; columns; i++)


for (int j = 0; j %26lt; rows; j++)


transposeMatrix[i][j] = matrix[j][i];

flowers online

No comments:

Post a Comment