fork download
  1. #include <stdio.h>
  2.  
  3. // Assuming the date, address, rankDetail, and officer structures are defined as before
  4.  
  5. struct date {
  6. int day;
  7. int month;
  8. int year;
  9. };
  10.  
  11. struct address {
  12. char street[100];
  13. char city[50];
  14. char state[50];
  15. int zipCode;
  16. char planet[50];
  17. };
  18.  
  19. struct rankDetail {
  20. char rank[30];
  21. struct date lastPromotionDate;
  22. };
  23.  
  24. struct officer {
  25. char name[50];
  26. struct date dateOfBirth;
  27. struct address homeAddress;
  28. char ship[50];
  29. };
  30.  
  31. // Function to read date from standard input
  32. struct date readDate() {
  33. struct date d;
  34. scanf("%d/%d/%d", &d.month, &d.day, &d.year);
  35. return d;
  36. }
  37.  
  38. // Function to read address from standard input
  39. struct address readAddress() {
  40. struct address a;
  41. scanf(" %[^\n]s", a.street); // Read until newline is encountered
  42. scanf(" %[^\n]s", a.city);
  43. scanf(" %[^\n]s", a.state);
  44. scanf("%d", &a.zipCode);
  45. scanf(" %[^\n]s", a.planet);
  46. return a;
  47. }
  48.  
  49. int main() {
  50. struct officer o;
  51. printf("Enter officer's name: ");
  52. scanf(" %[^\n]s", o.name); // Read string until newline is encountered
  53.  
  54. printf("Enter officer's date of birth (MM/DD/YYYY): ");
  55. o.dateOfBirth = readDate();
  56.  
  57. printf("Enter officer's address in the format: street, city, state, zip code, planet\n");
  58. o.homeAddress = readAddress();
  59.  
  60. printf("Enter officer's ship: ");
  61. scanf(" %[^\n]s", o.ship);
  62.  
  63. // Printing to verify the input
  64. printf("\nOfficer's Name: %s\n", o.name);
  65. printf("Date of Birth: %d/%d/%d\n", o.dateOfBirth.month, o.dateOfBirth.day, o.dateOfBirth.year);
  66. printf("Address: %s, %s, %s, %d, %s\n", o.homeAddress.street, o.homeAddress.city, o.homeAddress.state, o.homeAddress.zipCode, o.homeAddress.planet);
  67. printf("Ship: %s\n", o.ship);
  68.  
  69. return 0;
  70. }
  71.  
  72.  
Success #stdin #stdout 0s 5288KB
stdin
Mr. James Tiberius Kirk
03/22/2233
23 Falling Rock
Riverside
Iowa
52327
Planet Earth
USS Enterprise
stdout
Enter officer's name: Enter officer's date of birth (MM/DD/YYYY): Enter officer's address in the format: street, city, state, zip code, planet
Enter officer's ship: 
Officer's Name: Mr. James Tiberius Kirk
Date of Birth: 3/22/2233
Address: 23 Falling Rock, Riverside, Iowa, 52327, Planet Earth
Ship: USS Enterprise