time and date 28tm structure 29 in c 2b 2b

Solutions on MaxInterview for time and date 28tm structure 29 in c 2b 2b by the best coders in the world

showing results for - "time and date 28tm structure 29 in c 2b 2b"
Simona
12 Feb 2016
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}