Делаю 15 Задачу

This commit is contained in:
AZEN-SGG 2024-10-20 20:55:11 +03:00
parent 3f5c6299fc
commit 4c36e1638a
3 changed files with 62 additions and 18 deletions

View file

@ -10,6 +10,6 @@ int main(void) {
numbers = getList(file);
if (numbers == NULL) return 1;
printf("Count elements in file: %d", replaceLocalMin(numbers));
printf("Count elements in file: %d", findAndReplaceLocalMin(numbers));
free(numbers);
}