refresh
This commit is contained in:
parent
af6e9fefd6
commit
3935267c7e
18
du5/program.c
Normal file
18
du5/program.c
Normal 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;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user