2nd_Sem_Bogachev/2025.03.21/Example/array_io.h
2025-03-16 17:24:23 +03:00

11 lines
264 B
C

#ifndef ARRAY_IO_H
#define ARRAY_IO_H
#include "io_status.h"
#include "init_f.h"
io_status read_matrix(double *a, int m, int n, const char *name);
void print_matrix(const double *a, int m, int n, int p);
void init_matrix(double *a, int m, int n, int k);
#endif