usaa25/du5/program.c
2025-11-12 09:30:38 +01:00

18 lines
211 B
C

#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;
}