码迷,mamicode.com
首页 > 编程语言 > 详细

linux基础之C语言获取时间

时间:2019-12-08 12:57:33      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:日期   include   file   当前时间   显示   linu   oid   print   ret   

/////////////////////////////////////////////////////
//获取系统当前时间,并转换为当地时间显示
/////////////////////////////////////////////////////

#include <stdio.h>
#include <time.h>

int main (void)
{
    time_t now;
    struct tm *ptm;
    //time() returns the time as the number of seconds since the Epoch,
    //1970-01-01 00:00:00 +0000 (UTC)
    //这里只能得到当前距离某个时间的总秒数,需要进一步转换
    time (&now);
    //获取当地日期和时间
    ptm = localtime (&now);
    //将转换后的时间以字符串形式显示
    printf ("now: %s", asctime(ptm));

    return 0;
}

结果

linux@ubuntu:~/c_file$ ./get_time 
now: Sun Dec  8 11:56:59 2019

linux基础之C语言获取时间

标签:日期   include   file   当前时间   显示   linu   oid   print   ret   

原文地址:https://www.cnblogs.com/risesource/p/12005185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!