Strange Error in 5Ex if: 2 3 5 2 3

This commit is contained in:
AZEN-SGG 2025-03-09 21:34:14 +03:00
parent 48d6198ca3
commit ab0fbf59d0
13 changed files with 372 additions and 6 deletions

11
2025.03.14/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_matrix(double *a, int n, int m, const char *name);
void print_matrix(const double *a, int n, int m, int p);
void init_matrix(double *a, int n, int m, int k);
#endif