Advertisement
Guest User

Untitled

a guest
Feb 29th, 2016
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     char surname[15];
  3.     char fname[15];
  4.     char middlename[15];
  5. };
  6.  
  7. struct Add
  8. {
  9.     char street[15];
  10.     int house;
  11.     int kv;
  12. };
  13.  
  14. typedef struct employee
  15. {
  16.     struct fio FIO;
  17.     struct Add adress;
  18.     int years;
  19. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement