-
Notifications
You must be signed in to change notification settings - Fork 0
/
traspuesta.c
48 lines (45 loc) · 1.01 KB
/
traspuesta.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define MAX_COLUMNAS 5
#define MAX_FILAS 5
void traspuesta(int matriz[][MAX_COLUMNAS] , size_t filas, size_t columnas);
int main(void)
{
int M[3][3]={
{1,2,3},
{4,5,6},
{7,8,9}
};
int j,i;
traspuesta(M , 3,3);
for (i=0; i<3;i++){
for (j=0; j<3 ;j++){
printf(" %i ",M[i][j] );/*imprimo a ver que volvio*/
}
puts("\n");
}
return 0;
}
void traspuesta( int matriz[][MAX_COLUMNAS] , size_t filas, size_t columnas){
int i,j;
int traspuesta[MAX_COLUMNAS][MAX_FILAS];
for (i=0; i<3;i++){
for (j=0; j<3 ;j++){
printf(" %i ",matriz[i][j] );/*imprimo a ver que llego*/
}
puts("\n");
}
for (i = 0; i < columnas; i++){
for (j=0; j <filas; j++){
traspuesta[j][i] = matriz[i][j] ;
}
}
for (i = 0; i < columnas; i++){
for (j=0; j <filas; j++){
matriz[i][j]= traspuesta[i][j];
}
}
}/***********************dudas********************/
/*me llegan algunas cosas de la matriz como basura*/
/*compila pero al correr da error*/