在Linux中,您可以使用strftime
函数来格式化日期和时间
#include <stdio.h>
#include <time.h>
int main() {
time_t rawtime;
struct tm * timeinfo;
// 获取当前时间
time(&rawtime);
// 将当前时间转换为可读取的格式
timeinfo = localtime(&rawtime);
// 使用strftime函数格式化日期和时间
char buffer[80];
strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", timeinfo);
// 输出格式化后的日期和时间
printf("Formatted date and time: %s\n", buffer);
return 0;
}
在这个示例中,我们首先使用time()
函数获取当前时间的秒数,然后使用localtime()
函数将秒数转换为struct tm
结构体,以便我们可以对其进行操作。接下来,我们使用strftime()
函数将struct tm
结构体格式化为一个字符串,其中包含年、月、日、时、分和秒。最后,我们将格式化后的日期和时间输出到控制台。