Started task 6

This commit is contained in:
AZEN-SGG 2025-05-07 22:33:14 +03:00
parent 47a464aa9e
commit af90d91e29
9 changed files with 225 additions and 102 deletions

View file

@ -0,0 +1,11 @@
#ifndef ARRAY_IO_H
#define ARRAY_IO_H
int init_array (
double (*f) (double),
double *d, int m,
double a, double b,
double eps, double *ret
);
#endif