This commit is contained in:
Sambo Chea 2020-08-03 13:22:48 +07:00
parent e13be3a0b6
commit a290788bd3

View File

@ -0,0 +1,14 @@
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
struct Bus {
int BusID;
int RouteID;
time_t schedule;
};
int main() {
return EXIT_SUCCESS;
}