diff --git a/du5/program.c b/du5/program.c new file mode 100644 index 0000000..8348247 --- /dev/null +++ b/du5/program.c @@ -0,0 +1,18 @@ +#include +#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; +} \ No newline at end of file