Started Task 4

This commit is contained in:
AZEN-SGG 2025-04-16 19:58:03 +03:00
parent 91f3acd62d
commit edb7e1adea
9 changed files with 306 additions and 0 deletions

View file

@ -4,6 +4,7 @@
#define ERR_MEM "Error: Not enough memory!"
#define ERR_OPEN "Error: Cannot open file"
#define ERR_READ "Error: Cannot read file"
#define ERR_FUNC "Error: Algorithm is not applicable!"
typedef enum _io_status
{

View file

@ -1,6 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <float.h>
#include <math.h>
#include "array_io.h"
#include "io_status.h"