Timestamp is defined as the number of seconds elapsed since midnight of January 1, 2000, UTC. Using standard C only, how to get unix timestamp with epoch of Jan 1, 2000 UTC and not Jan 1, 1970?
time(NULL)
returns seconds since January 1, 1970.
time_t seconds;
seconds = time(NULL);