Сделал 1 Задание со списками
This commit is contained in:
parent
5dbf4901b8
commit
632a718df1
71 changed files with 106 additions and 0 deletions
12
ProcessingSequences/10Ex/main.c
Normal file
12
ProcessingSequences/10Ex/main.c
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#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));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue