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. }; // Given details for two officers for this question so I am declaring an array of size 2 in this case
  44.  
  45.  
  46. // struct officer person1 = { "Mr. James Tiberius Kirk", "March 22, 2233", "23 Falling Rock, Riverside, Iowa 52327-0021 Planet Earth"," Single"," Jim","Bones???",
  47. // " April 12, 2224 ", 41153.7, "June 23, 2212"};
  48.  
  49. // Print the initialized structure
  50. printf("Name: %s\n", arrayOfficers[0].infoPersonal.name);
  51. printf("Date of Birth: %s\n", arrayOfficers[0].infoPersonal.dateOfBirth);
  52. printf("Address: %s\n", arrayOfficers[0].infoPersonal.address);
  53. printf("Martial Status: %s\n", arrayOfficers[0].infoPersonal.martialStatus);
  54. printf("Nickname: %s\n", arrayOfficers[0].infoPersonal.nickname);
  55. printf("Favorite Saying: %s\n", arrayOfficers[0].infoPersonal.favoriteSaying);
  56. printf("Last Promotion Date: %s\n", arrayOfficers[0].infoDates.lastPromotionDate);
  57. printf("Starting Star Date: %0.1f\n", arrayOfficers[0].infoDates.startingStarDate);
  58. printf("Star Fleet Grad Date: %s\n", arrayOfficers[0].infoDates.starfleetGradDate);
  59. printf("Rank: %s\n", arrayOfficers[0].infoOtherEmploy.rank);
  60. printf("Ship: %s\n", arrayOfficers[0].infoOtherEmploy.ship);
  61. printf("Starfleet ID: %s\n", arrayOfficers[0].infoOtherEmploy.starfleetID);
  62. printf("Starfleet Graduation Date: %0.2f\n", arrayOfficers[0].infoOtherEmploy.hourlyPay);
  63.  
  64.  
  65. return 0;
  66. }
Success #stdin #stdout 0.01s 5288KB
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
Starfleet Graduation Date: 456.78