当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。