Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #define SIZE 100
  2.  
  3. struct Reader
  4. {
  5.     int id;
  6.     char name[SIZE], surname[SIZE];
  7.     int age;
  8. };
  9.  
  10. struct Book
  11. {
  12.     int id;
  13.     char title[SIZE], author[SIZE];
  14.     int year;
  15. };
  16.  
  17. struct CheckOut
  18. {
  19.     int id;
  20.     struct Date
  21.     {
  22.         int day, month, year;
  23.     };
  24.     int reader_id, book_id;
  25. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement