Сделал задание номер 3 (35)

This commit is contained in:
AZEN-SGG 2024-09-20 11:36:44 +03:00
parent 05ce9de374
commit f6f440fef3
12 changed files with 138 additions and 0 deletions

11
Third/count_max_local.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef COUNT_MAX_LOCAL
#define COUNT_MAX_LOCAL
#include <stdio.h>
#define EMPTY 0
int max(int first, int second);
int getCountMaxLocal(FILE * file);
#endif