结构体类型定义:
struct Date = {
int year;
int month;
int day;
};
struct Date d = {2013,8,17};
d.day = 6;
struct Date = {
int year;