MSUStudentWork/10Ex/main.c
2024-09-27 09:30:00 +03:00

12 lines
238 B
C

#include <stdio.h>
#include "tools.h"
#include "count_between.h"
// 10Ex
int main(void) {
FILE * file = getFile();
if (file == NULL) return 1;
printf("Count of number between first and second is %d", countBetween(file));
}