This commit is contained in:
2025-11-19 23:21:51 +07:00
parent b77d49c42c
commit abd1817e0e
10 changed files with 507 additions and 114 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef ARRAY_OPS_H
#define ARRAY_OPS_H
#include <stdio.h>
#define MAXMASSIVESIZE 10000
void setmass(int *massSize);
int fillmass(int massSize, int *massive);
void viewmass(int massSize, int *massive);
void selfunc(int size, int *massive);
int flush(void);
void range(int type,int size, int *massive);
void find(int type,int size, int *massive);
#endif