當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 time()用法及代碼示例


time()函數在time.h(在C++中為ctime)頭文件中定義。此函數以秒為單位返回自1970年1月1日UTC 00:00:00(Unix時間戳)以來的時間。如果second不是null指針,則返回的值也存儲在second指向的對象中。

用法:

time_t time( time_t *second )

參數:此函數接受單個參數。此參數用於設置存儲時間的time_t對象。


返回值:該函數將當前的日曆時間作為類型為time_t的對象返回。

程序1:

// C program to demonstrate 
// example of time() function. 
#include <stdio.h> 
#include <time.h> 
  
int main () 
{ 
    time_t seconds; 
      
    seconds = time(NULL); 
    printf("Seconds since January 1, 1970 = %ld\n", seconds); 
      
    return(0); 
}
輸出:
Seconds since January 1, 1970 = 1538123990

範例2:

// C program to demonstrate 
// example of time() function. 
   
#include <stdio.h> 
#include <time.h> 
   
int main() 
{ 
    time_t seconds; 
   
     // Stores time seconds 
    time(&seconds); 
    printf("Seconds since January 1, 1970 = %ld\n", seconds); 
   
    return 0; 
}
輸出:
Seconds since January 1, 1970 = 1538123990


相關用法


注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 time() function in C。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。