The Fourth and Fifth tasks are done

This commit is contained in:
AZEN-SGG 2025-03-03 12:13:04 +03:00
parent 69ff8c30a1
commit a6c451d866
28 changed files with 1077 additions and 15 deletions

11
2025.03.07/5Ex/array_io.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef ARRAY_IO_H
#define ARRAY_IO_H
#include "io_status.h"
#include "init_f.h"
io_status read_sq_matrix(double *a, int n, const char *name);
void print_sq_matrix(const double *a, int n, int p);
void init_sq_matrix(double *a, int n, int k);
#endif