Task 1 was done!

This commit is contained in:
AZEN-SGG 2025-04-14 23:27:22 +03:00
parent 768df4b636
commit 9319f68a39
71 changed files with 249 additions and 166 deletions

View file

@ -0,0 +1,9 @@
#ifndef ARRAY_IO_H
#define ARRAY_IO_H
#include "io_status.h"
io_status read_values (double * restrict X, double * restrict Y, const int n, const char * restrict name);
void print_values (const double * restrict X, const double * restrict Y, const int n, const int p);
#endif