0
Transpose in C
Hi everyone. How does one do a transpose of an array in C? Thank you.
2 Réponses
+ 2
123
456
If we transpose it:
14
25
36
0
Make row values to column values..
Column values to row values..
Ex:
Transpose value of matrix[ i ][ j ] is matrix[ j ] [ i ].