2nd_Sem_Bogachev/2025.05.02/06Ex/array_io.h
2025-05-07 22:33:14 +03:00

11 lines
167 B
C

#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