18 lines
211 B
C
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;
|
|
} |