sbn.cassigment/work1/q3.c
2020-08-03 13:22:48 +07:00

14 lines
170 B
C

#include "stdio.h"
#include "stdlib.h"
#include "string.h"
struct Bus {
int BusID;
int RouteID;
time_t schedule;
};
int main() {
return EXIT_SUCCESS;
}