Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. int IntrM(int mat0[m][n]){
  2.  
  3. printf("introduzca las filas y columnas de la matriz\n");
  4. scanf("%d %d", &F, &C);
  5.  
  6. printf("a continuación, escriba la matriz\n");
  7.  
  8. for(i=0; i<F; i++){
  9. for(j=0; j<C; j++){
  10. scanf("%d", &mat0[i][j]);
  11. }
  12. }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement