/* 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};   /* defines a variable of type struct date */

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

    return (0);

}