fork download
  1. struct personalInfo
  2. {
  3. char name[50];
  4. char dateOfBirth[50];
  5. char address[150];
  6. char martialStatus[50];
  7. char nickname[50];
  8. char favoriteSaying[100];
  9.  
  10. };
  11.  
  12. struct employDates{
  13. char lastPromotionDate[50];
  14. float startingStarDate;
  15. char starfleetGradDate[50];
  16.  
  17. };
  18.  
  19. struct otherEmployInfo{
  20. char rank[50];
  21. char ship[50];
  22. char starfleetID[50];
  23. float hourlyPay;
  24.  
  25. };
  26.  
  27. struct officer
  28. {
  29. struct personalInfo infoPersonal;
  30. struct employDates infoDates;
  31. struct otherEmployInfo infoOtherEmploy;
  32. };
  33.  
  34. #include <stdio.h>
  35.  
  36. int main(void) {
  37.  
  38. //Declare an array of structures
  39. struct officer arrayOfficers[2]={
  40. {{"Mr. James Tiberius Kirk","March 22, 2233","23 Falling Rock, Riverside, Iowa 52327-0021 Planet Earth"," Single"," Jim","Bones???"},
  41. {"April 12, 2224", 41153.7, "June 23, 2212"},
  42. {"Captain","USS Enterprise","02341232",456.78}},
  43. {{"Mr. Leonard A. McCoy Jr.","7/8/2227","8745 South Road Jackson, Mississippi 09201-0001 Planet Earth","Divorced","Bones","He's dead Jim."},
  44. {"June 24, 2216",41151.8,"June 21,2210"},
  45. {"Chief Medical Officer","USS Enterprise","00034212",234.56}}
  46. }; // Given details for two officers for this question so I am declaring an array of size 2 in this case
  47.  
  48. // Print the initialized structure
  49. for (int i = 0; i < 2; i++) {
  50. printf("Name: %s\n", arrayOfficers[i].infoPersonal.name);
  51. printf("Date of Birth: %s\n", arrayOfficers[i].infoPersonal.dateOfBirth);
  52. printf("Address: %s\n", arrayOfficers[i].infoPersonal.address);
  53. printf("Martial Status: %s\n", arrayOfficers[i].infoPersonal.martialStatus);
  54. printf("Nickname: %s\n", arrayOfficers[i].infoPersonal.nickname);
  55. printf("Favorite Saying: %s\n", arrayOfficers[i].infoPersonal.favoriteSaying);
  56. printf("Last Promotion Date: %s\n", arrayOfficers[i].infoDates.lastPromotionDate);
  57. printf("Starting Star Date: %0.1f\n", arrayOfficers[i].infoDates.startingStarDate);
  58. printf("Star Fleet Grad Date: %s\n", arrayOfficers[i].infoDates.starfleetGradDate);
  59. printf("Rank: %s\n", arrayOfficers[i].infoOtherEmploy.rank);
  60. printf("Ship: %s\n", arrayOfficers[i].infoOtherEmploy.ship);
  61. printf("Starfleet ID: %s\n", arrayOfficers[i].infoOtherEmploy.starfleetID);
  62. printf("Hourly Pay: %0.2f\n", arrayOfficers[i].infoOtherEmploy.hourlyPay);
  63. printf("---------------------------");
  64. }
  65.  
  66. return 0;
  67. }
Success #stdin #stdout 0.01s 5264KB
stdin
Standard input is empty
stdout
Name: Mr. James Tiberius Kirk
Date of Birth: March 22, 2233
Address: 23 Falling Rock, Riverside, Iowa 52327-0021 Planet Earth
Martial Status:  Single
Nickname:  Jim
Favorite Saying: Bones???
Last Promotion Date: April 12, 2224
Starting Star Date: 41153.7
Star Fleet Grad Date: June 23, 2212
Rank: Captain
Ship: USS Enterprise
Starfleet ID: 02341232
Hourly Pay: 456.78
---------------------------Name: Mr. Leonard A. McCoy Jr.
Date of Birth: 7/8/2227
Address: 8745 South Road Jackson, Mississippi 09201-0001 Planet Earth
Martial Status: Divorced
Nickname: Bones
Favorite Saying: He's dead Jim.
Last Promotion Date: June 24, 2216
Starting Star Date: 41151.8
Star Fleet Grad Date: June 21,2210
Rank: Chief Medical Officer
Ship: USS Enterprise
Starfleet ID: 00034212
Hourly Pay: 234.56
---------------------------