Mktime (the number of seconds after the time structure data is converted)

Source: Internet
Author: User

Mktime(Converts the time structure data to the following number of seconds)
Header file
# Include <time. h>
Define functions
Time_tMktime(Strcut TM * timeptr );
Function Description
Mktime() Is used to convert the TM structure data referred to by the timeptr parameter to the number of seconds that have elapsed since 00:00:00 January 1, January 1, 1970 ad utc.
Return Value
Returns the number of seconds that have elapsed.
Example
/* Obtain the time (in seconds) with time (), and use localtime ()
Convert to struct TM and then use mktine () to convert struct TM to the original number of seconds */
# Include <time. h>
Main ()
{
Time_t timep;
Strcut TM * P;
Time (& timep );
Printf ("Time (): % d \ n", timep );
P = localtime (& timep );
Timep =Mktime(P );
Printf ("Time ()-> localtime ()->Mktime(): % D \ n ", timep );
}
Run
Time (): 974943297
Time ()-> localtime ()->Mktime(): 974943297

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.