C语言获取当前时间(Linux环境下,VC6.0,Codebloc

在Linux环境下用C语言编写程序获取当前的时间只要调用其内部的函数即可。这些函数在 time.h 这个头文件里,第一个函数原型:

① time_t time(time_t *t),通过Linux的man也很方便能够找到这个函数的相关说明:

C语言获取当前时间(Linux环境下,VC6.0,Codebloc

在Linux环境的命令行模式中输入 man 2 time即可找到上图的对time函数的说明,这个函数可以计算从1970年1月1日到当前的总秒数。

第二个函数的函数原型是:

② struct tm *localtime(const time_t *timep)

C语言获取当前时间(Linux环境下,VC6.0,Codebloc

C语言获取当前时间(Linux环境下,VC6.0,Codebloc

在Linux环境的命令行模式中输入 man localtime即可找到上图的对time函数的说明。有了这两个函数就可以编写程序了,程序如下:

#include <stdio.h> 
#include <time.h> 
 
int main(void) 

  time_t t; 
  t = time(NULL); 
   
  printf("时间秒数:%d\n",t); 
     
    struct tm *p = localtime(&t); 
     
    printf("%d-",1900+ p->tm_year);//Year  需要加上1900
    printf("%d-",1+p->tm_mon);//Month  需要加上1
    printf("%d\t",p->tm_mday);//Day 
    printf("%d:",p->tm_hour);//Hour 
    printf("%d:",p->tm_min);//Minute 
    printf("%d\t",p->tm_sec);//Second 
    printf("Week=%d\n",p->tm_wday);//Week 
    return 0; 
}

输出:

时间秒数:1541247008
2018-11-3 20:10:8 Week=6

如下图:

C语言获取当前时间(Linux环境下,VC6.0,Codeblock环境下通用)

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/4c2e9872b9edb6c7047b916ac5e3a639.html