//Name: Christine Cloma //Purpose: The program is designed to input your // Birthdate #include #include struct Date { int mm; int dd; int yy; }; void main() { Date myBdate; clrscr(); printf("Enter month#: "); scanf("%d",&myBdate.mm); printf("Enter day#: "); scanf("%d", &myBdate.dd); printf("Enter year: "); scanf("%d",&myBdate.yy); printf("\n\n"); printf("MyBdate is %02d-%02d-%d",myBdate.mm,myBdate.dd,myBdate.yy); getch(); }