// a program that defines and populates a record #include int main() { struct { int month; int day; int year; } birth; birth.month = 12; birth.day = 28; birth.year = 1982; cout << "\nMy birth date is " << birth.month << '/' << birth.day << '/' << birth.year % 100 << endl; return 0; }