Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/09/2009, 13:25
haidion
 
Fecha de Ingreso: febrero-2004
Ubicación: Buenos Aires
Mensajes: 60
Antigüedad: 20 años, 3 meses
Puntos: 0
Respuesta: Crear un matriz con filas y columans en c

Código c:
Ver original
  1. int matriz[18][3];
  2.  
  3. for(int i=0;i<18;i++)
  4.    for(int j=0;j<3;j++)
  5.           matriz[i][j]=1;