欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

文件编程之时间编程

程序员文章站 2024-01-28 19:55:23
...

时间编程

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

int main(void)
{
    struct tm *local;
    time_t t;
    t=time(NULL);
    local = localtime(&t);
    printf("Local hour is :%d\n",local->tm_hour);
    
    local = gmtime(&t);
    printf("UTC hour is :%d\n",local->tm_hour);


    /* timer2 */
    struct tm *ptr;
    time_t lt;
    lt=time(NULL);
    ptr = gmtime(&lt);
    printf("asctime:%s",asctime(ptr));
    printf("ctime:%s",ctime(&lt));
    

    return 0;
}
相关标签: linux应用编程