/* user defined structure type for a date */
struct date
{
    int month;
     int day;
    int year;
};

#include <stdio.h>
int main ()
{

    struct date today = {3,23, 1996}, tomorrow ;
	
	tomorrow = today;

    printf ("%d/%d/%d \n", tomorrow.month, tomorrow.day, tomorrow.year - 1900);  /* Y2K Issue ? */

    return (0);

}