C 语言库函数 - time()
C 语言标准库函数 time_t time(time_t *seconds) 返回自纪元 Epoch(1970-01-01 00:00:00 UTC)起经过的时间,以秒为单位。
如果 seconds 不为空,则返回值也存储在变量 seconds 中
头文件
#include <time.h>
函数原型
下面是 time() 函数的原型
time_t time(time_t *t)
参数
- seconds: 这是指向类型为 time_t 的对象的指针,用来存储 seconds 的值
返回值
time 函数以 time_t 对象返回当前日历时间。
范例
下面的范例演示了 time() 函数的用法
/** * file: main.c * author: 简单教程(www.twle.cn) * * Copyright © 2015-2065 www.twle.cn. All rights reserved. */ #include <stdio.h> #include <time.h> int main () { time_t seconds; seconds = time(NULL); printf("自 1970-01-01 起的分钟数 = %ld\n", seconds/60); return(0); }
编译运行以上范例,输出结果如下
$ gcc main.c && ./a.out 自 1970-01-01 起的分钟数 = 25108674