在Linux系统中,可以使用time.h头文件中的time()函数来获取当前时间。以下是一个示例代码:
#include <stdio.h>
#include <time.h>
int main() {
time_t currentTime;
time(¤tTime);
printf("Current time: %s", ctime(¤tTime));
return 0;
}
在上面的示例中,time()函数将当前时间的秒数存储在currentTime变量中,然后使用ctime()函数将时间转换为字符串并打印出来。