Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1. int** MostrarTablero(){
  2.   int filas,columnas;
  3.   int Matriz[5][5];
  4.   for(filas=0;filas<5;filas++) {
  5.     for(columnas=0;columnas<5;columnas++){
  6.       Matriz[filas][columnas] = 1;
  7.     }
  8.   }
  9. return(Matriz);
  10.   //for (filas=0;filas<5;filas++) {
  11.       //printf("%d %d %d %d %d\n",Matriz[filas][0],Matriz[filas][1],Matriz[filas][2],Matriz[filas][3],Matriz[filas][4]);
  12.   //}
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement