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. // struct personalInfo person1 = { "Mr. James Tiberius Kirk", "March 22, 2233", "23 Falling Rock, Riverside, Iowa 52327-0021 Planet Earth"," Single"," Jim","Bones???"};
  38. struct officer person1 = { "Mr. James Tiberius Kirk", "March 22, 2233", "23 Falling Rock, Riverside, Iowa 52327-0021 Planet Earth"," Single"," Jim","Bones???",
  39. " April 12, 2224 ", 41153.7, "June 23, 2212"};
  40.  
  41. // Print the initialized structure
  42. printf("Name: %s\n", person1.infoPersonal.name);
  43. printf("Date of Birth: %s\n", person1.infoPersonal.dateOfBirth);
  44. printf("Address: %s\n", person1.infoPersonal.address);
  45. printf("Martial Status: %s\n", person1.infoPersonal.martialStatus);
  46. printf("Nickname: %s\n", person1.infoPersonal.nickname);
  47. printf("Favorite Saying: %s\n", person1.infoPersonal.favoriteSaying);
  48. printf("Last Promotion Date: %s\n", person1.infoDates.lastPromotionDate);
  49. printf("Starting Star Date: %0.1f\n", person1.infoDates.startingStarDate);
  50. printf("Star Fleet Grad Date: %s\n", person1.infoDates.starfleetGradDate);
  51.  
  52. return 0;
  53. }
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
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