fork download
  1. #include <stdio.h>
  2.  
  3. // supporting structure for dates
  4. struct date {
  5. int day;
  6. int month;
  7. int year;
  8. };
  9.  
  10. // supporting structure for name/address/maritalStatus/graduationdate
  11. struct PersonalInfo
  12. {
  13. char name[25]; //name holder
  14. char address[50]; //address holder
  15. char maritalStatus[3]; // Single/Divorced/Other holder
  16. char graduationDate[20]; // Graduation date holder
  17. char starfleetID[40]; //starfleet ID holder
  18. };
  19.  
  20. struct salary {
  21. char rank[10]; //rank holder
  22. float hourlyPay; //hourly pay holder
  23.  
  24.  
  25. };
  26.  
  27. struct funFacts
  28. {
  29. char favoriteSaying[25]; //favorite saying holder
  30. char starfleetGrad[50]; //graduation date holder
  31. char lastPromotion[10]; //last promotion holder
  32. char startingStardate[50]; //starting stardate holder
  33. };
  34.  
  35. // support of officer info
  36. struct officer {
  37.  
  38. char starFleetID[9];
  39. struct date dateOfBirth;
  40. struct PersonalInfo PersonalInfo; //refer to personainfo for info
  41. struct salary; //refer to salary structure for info
  42. struct funFacts; //refer to funfact structure for info
  43.  
  44.  
  45. };
  46.  
  47.  
  48. struct officer officers[100];
  49.  
  50. int main()
  51. {
  52.  
  53. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty