This commit is contained in:
Oleksandr Vyshniakov 2025-11-12 09:30:38 +01:00
parent af6e9fefd6
commit 3935267c7e

18
du5/program.c Normal file
View File

@ -0,0 +1,18 @@
#include <stdio.h>
#define SIZE 100
struct station {
struct car** tracks;
int track_count;
};
struct car {
int capacity;
char value[SIZE];
struct car* next;
}
int main() {
return 0;
}