c语言时间戳转换日期格式怎么实现

794
2024/2/27 14:48:24
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

可以使用C语言中的time函数和localtime函数来实现时间戳转换为日期格式的功能。下面是一个简单的示例代码:

#include <stdio.h>
#include <time.h>

int main() {
    time_t timestamp = 1597414471; // 2020-08-14 15:34:31 的时间戳
    struct tm *tm_info;

    tm_info = localtime(&timestamp);

    printf("Year: %d\n", tm_info->tm_year + 1900);
    printf("Month: %d\n", tm_info->tm_mon + 1);
    printf("Day: %d\n", tm_info->tm_mday);
    printf("Hour: %d\n", tm_info->tm_hour);
    printf("Minute: %d\n", tm_info->tm_min);
    printf("Second: %d\n", tm_info->tm_sec);

    return 0;
}

在这个示例中,我们首先定义了一个时间戳timestamp,然后使用localtime函数将该时间戳转换为一个struct tm结构体,其中包含了年、月、日、时、分、秒等信息。最后通过访问struct tm结构体中的成员来获取具体的日期信息。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c语言怎么实现查找功能