1. 程式人生 > >C語言獲取當前時間(Linux環境下,VC6.0,Codeblock環境下通用)

C語言獲取當前時間(Linux環境下,VC6.0,Codeblock環境下通用)

在Linux環境下用C語言編寫程式獲取當前的時間只要呼叫其內部的函式即可。這些函式在 time.h 這個標頭檔案裡,第一個函式原型:

① time_t time(time_t *t),通過Linux的man也很方便能夠找到這個函式的相關說明:

在Linux環境的命令列模式中輸入 man 2 time即可找到上圖的對time函式的說明,這個函式可以計算從1970年1月1日到當前的總秒數。

第二個函式的函式原型是:

② struct tm *localtime(const time_t *timep)

在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環境下通用)