C語言擷取目前時間(Linux環境下)

來源:互聯網
上載者:User

標籤:inux   amp   str   命令列   star   linu   ons   return   printf   

   在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函數的說明。有了這兩個函數就可以編寫程式了,程式如下:

 

  1. #include <stdio.h>  
  2. #include <time.h>  
  3.   
  4. int main(void)  
  5. {  
  6.     time_t t;  
  7.     t = time(NULL);  
  8.       
  9.     printf("時間秒數:%d\n",t);  
  10.       
  11.     struct tm *p = localtime(&t);  
  12.       
  13.     printf("%d-",1900+ p->tm_year);//Year  需要加上1900
  14.     printf("%d-",1+p->tm_mon);//Month  需要加上1
  15.     printf("%d\t",p->tm_mday);//Day  
  16.     printf("%d:",p->tm_hour);//Hour  
  17.     printf("%d:",p->tm_min);//Minute  
  18.     printf("%d\t",p->tm_sec);//Second  
  19.     printf("Week=%d\n",p->tm_wday);//Week  
  20.     return 0;  

啟動並執行結果為:

 

C語言擷取目前時間(Linux環境下)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.