Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef MATRIX_H
- #define MATRIX_H
- #define N 100
- typedef int mat[N][N]; // matrix type definition
- typedef int vet[N];
- void loadMatrix(mat, int&, int&);
- void printMatrix(mat, int, int);
- void sumRows(mat, int, int, vet&);
- int sumIncluded(mat, int, int);
- #endif
Advertisement
Add Comment
Please, Sign In to add comment