This repository has been archived on 2026-07-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cmc/3sem/seminars/l9/04.c
T
2025-04-13 21:48:15 +03:00

17 lines
415 B
C
Executable File

// по номеру начального размер блока и указатель на таблицу файлов
// вывести размер файла
unsigned int
f(unsigned int n, unsigned int *table)
{
unsigned int size = 0;
int first_block = table[n];
while (first_block) {
size++; // размер блока
first_block = table[first_block];
}
return size;
}