#include struct Date // this is a global declaration { int month; int day; int year; }; int main() { Date 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; }