Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. struct time(){
  2.     int hours;
  3.     int minutes;
  4. }
  5.  
  6. struct flights{
  7.     time dep_time;
  8.     time arr_time;
  9.     int days[2][7];
  10. }
  11.  
  12. struct List{
  13.     char from[15];
  14.     char to[15];
  15.     flights var[5];
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement