精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

C語言 庫函數 time()

C語言 庫函數 time()

C語言 標準庫 - <time.h>C語言 標準庫 - <time.h>

C 庫函數 time_t time(time_t *seconds) 返回自紀元 Epoch(1970-01-01 00:00:00 UTC)起經過的時間,以秒為單位。如果 seconds 不為空,則返回值也存儲在變量 seconds 中。

 

1. 聲明

下面是 time() 函數的聲明。

time_t time(time_t *t)

 

2. 參數

  • seconds -- 這是指向類型為 time_t 的對象的指針,用來存儲 seconds 的值。

 

3. 返回值

以 time_t 對象返回當前日歷時間。

 

4. 實例

下面的實例演示了 time() 函數的用法。

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

int main ()
{
  time_t seconds;

  seconds = time(NULL);
  printf("自 1970-01-01 起的小時數 = %ld\n", seconds/3600);
  
  return(0);
}

讓我們編譯并運行上面的程序,這將產生以下結果:

自 1970-01-01 起的小時數 = 373711

C語言 標準庫 - <time.h>C語言 標準庫 - <time.h>

下一節:C 標準庫 <stdio.h>

C 簡介

相關文章