NoMatchFound

Untitled

Dec 4th, 2011
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #ifndef MATRIX_H
  2. #define MATRIX_H
  3. #define N 100
  4.  
  5. typedef int mat[N][N]; // matrix type definition
  6.  
  7. typedef int vet[N];
  8.  
  9. void loadMatrix(mat, int&, int&);
  10. void printMatrix(mat, int, int);
  11. void sumRows(mat, int, int, vet&);
  12. int sumIncluded(mat, int, int);
  13.  
  14. #endif
  15.  
Advertisement
Add Comment
Please, Sign In to add comment