在C语言中,可以使用time()函数来获取当前时间。需要包含<time.h>头文件,并调用time(NULL)函数即可获取当前时间的秒数。
以下是一个简单的示例代码:
#include <stdio.h>
#include <time.h>
int main() {
time_t current_time;
current_time = time(NULL);
printf("当前时间的秒数:%ld\n", current_time);
return 0;
}
运行上述代码,将会输出当前时间的秒数。