Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/04/2012, 05:17
sam90
 
Fecha de Ingreso: abril-2010
Ubicación: Rosario
Mensajes: 1.850
Antigüedad: 14 años
Puntos: 228
Respuesta: duplicar matriz, como era.

Código C:
Ver original
  1. char nombres[10][20] , copianombres[10][20] ;
  2. int i , j ;
  3. for(i = 0 ; i < 10 ; i ++ )
  4.     for(j = 0 ; i < 20 ; j ++ ) copianombres[i][j] = nombres[i][j];