sbn.cassigment/work1/q3.c

14 lines
170 B
C
Raw Normal View History

2020-08-03 13:22:48 +07:00
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
struct Bus {
int BusID;
int RouteID;
time_t schedule;
};
int main() {
return EXIT_SUCCESS;
}