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