I'm wondering how to go about defining a variable in a structure that comes from another structure. For example:
struct Date
{
int month;
int day;
int year;
};
struct Profile
{
START DATE
END DATE
int hours_worked
etc...
};