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