/***** Date structure ******/

struct date {
short int day;
short int month;
unsigned long year;
};

