time函数是C语言中的一个标准库函数,用于获取当前系统时间的秒数。
具体用法如下:
#include <time.h>
time_t time(time_t *seconds);
其中,time_t
是一个整数类型,seconds
是一个指向time_t
类型的指针。time
函数返回当前系统时间的秒数,同时可以将这个秒数存储到seconds
指针指向的变量中。
示例代码如下:
#include <stdio.h>
#include <time.h>
int main() {
time_t current_time;
current_time = time(NULL);
printf("Current time: %ld\n", current_time);
return 0;
}
在上面的例子中,time(NULL)
调用返回当前系统时间的秒数,并将其存储在current_time
变量中,然后通过printf
函数输出当前时间。