#include <stdio.h>
// supporting structure for dates
struct date {
int day;
int month;
int year;
};
// supporting structure for name/address/maritalStatus/graduationdate
struct PersonalInfo
{
char name[25]; //name holder
char address[50]; //address holder
char maritalStatus[3]; // Single/Divorced/Other holder
char graduationDate[20]; // Graduation date holder
char starfleetID[40]; //starfleet ID holder
};
struct salary {
char rank[10]; //rank holder
float hourlyPay; //hourly pay holder
};
struct funFacts
{
char favoriteSaying[25]; //favorite saying holder
char starfleetGrad[50]; //graduation date holder
char lastPromotion[10]; //last promotion holder
char startingStardate[50]; //starting stardate holder
};
// support of officer info
struct officer {
char starFleetID[9];
struct date dateOfBirth;
struct PersonalInfo PersonalInfo; //refer to personainfo for info
struct salary; //refer to salary structure for info
struct funFacts; //refer to funfact structure for info
};
struct officer officers[100];
int main()
{
}