fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. struct date
  5. {
  6. int day;
  7. int month;
  8. int year;
  9. };
  10.  
  11. struct name
  12. {
  13. char title[10]; // Mr.
  14. char firstName[30];
  15. char middleName[30];
  16. char lastName[30];
  17. };
  18.  
  19. struct address
  20. {
  21. char street[100]; // street address, including number
  22. char city[100]; // city name
  23. char state[100]; // state name
  24. char postal[20]; // postal code
  25. char planet[100]; // "Planet Earth"
  26. };
  27.  
  28. struct officer
  29. {
  30. struct name officer_name; // title + name of officer
  31. struct date date_of_birth; // officer birth date
  32. struct address officer_address; // officer address
  33. char rank[30]; // officer rank
  34. struct date last_promotion_date; // officer latest promotion date
  35. char ship[50]; // ship name
  36. char nickname[100]; // officer nickname
  37. char starfleetID[20]; // starfleet id can start with 0
  38. float hourlyPay; // hourly pay
  39. char saying[100]; // officer favorite saying
  40. float startingStardate; // starting star date
  41. char maritalstatus[50]; // officer marital status
  42. struct date graduation_date; // officer starfleet graduation date
  43. };
  44.  
  45. int main(void) {
  46. // your code goes here
  47. return 0;
  48. }
  49.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Standard output is empty