Linux编程(获取系统时间)

Posted Dsp Tian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux编程(获取系统时间)相关的知识,希望对你有一定的参考价值。

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

int main()
{

        time_t  now;
        struct  tm  *w;
        time(&now);
        w=localtime(&now);
        printf("%04d/%02d/%02d\n%02d:%02d:%02d\n",w->tm_year+1900,
                w->tm_mon+1,w->tm_mday,w->tm_hour,w->tm_min,w->tm_sec);

        return 0;
}

 

以上是关于Linux编程(获取系统时间)的主要内容,如果未能解决你的问题,请参考以下文章

(48)LINUX应用编程和网络编程之三Linux获取系统信息

Linux编程(获取系统时间)

Linux bash基础特性二

在LINUX下用C++编程,如何获取系统当前的时间。

Android 实用代码片段

Android 实用代码片段