1struct tm
2{
3 int tm_sec; // seconds of minutes from 0 to 61
4 int tm_min; // minutes of hour from 0 to 59
5 int tm_hour; // hours of day from 0 to 24
6 int tm_mday; // day of month from 1 to 31
7 int tm_mon; // month of year from 0 to 11
8 int tm_year; // year since 1900
9 int tm_wday; // days since sunday
10 int tm_yday; // days since January 1st
11 int tm_isdst;// hours of daylight savings time
12}