#include <stdio.h>

struct data
{
 int year;
 char month;
 char day;
}
struct books {
 char *title;
 char *author;
 struct date pubday;
}
book1;

book1.title = "Data structures"
book1.pubday.year = 2009;