void intercambiar (int M[20][20], int f, int c){ for (j=0;j<TAM;j++) /*<==intercambio*/ { temp1=a[0][j]; temp2=a[TAM-1][j]; a[0][j]= temp2; a[TAM-1][j]= temp1; } }}