Advertisement
Guest User

lab3.h

a guest
Jan 12th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. #ifndef lab3_h
  2. #define lab3_h
  3. #include<stdio.h>
  4. #include<_mingw.h>
  5. #include<stdlib.h>
  6. #include<ctype.h>
  7. #include<string.h>
  8. typedef enum { false, true } bool;
  9. struct data
  10. {
  11.     char id[50];
  12.     char name[50];
  13.     char surname[50];
  14.     char account_num[50];
  15.     double net_pension,taxed_pension;
  16.  
  17. };
  18.  
  19.  
  20. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement