

/* we can define a structure to hold track data */

typedef struct {
  char title[200];
  char author[100];
  int minutes;
  int seconds;
} track;

typedef struct {
  char month[15];
  int date;
  int year;
} date_t;

typedef struct {
  char title[200];
  char artist[100];
  track albumTracks[50];
  int numberOfTracks;
  date_t releaseDate;
} album;
