Page MenuHomec4science

hd_exercise05-5.hpp
No OneTemporary

File Metadata

Created
Mon, Jul 7, 03:54

hd_exercise05-5.hpp

# ifndef hd_exercise05-5_hpp
# define hd_exercise05-5_hpp
double** Multiply(double **matrix1, double **matrix2, int *size1, int *size2);
void printMat(double** mat, int m, int n);
double ** allocateMatrix(int m, int n);
void deallocateMatrix(double** mat, int m, int n);
# endif

Event Timeline