gpt4 book ai didi

c - 如何在 C 中将 unsigned int 值打印为时间字符串

转载 作者:行者123 更新时间:2023-12-02 08:57:50 25 4
gpt4 key购买 nike

我需要将此值作为时间字符串打印为 Mon 16-Aug-2010 06:24 格式或类似格式。

unsigned int t = 1281920090;

最佳答案

您可以使用函数gmtimeasctime如:

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

int main() {
time_t timestamp = 1281920090;
printf("%s", asctime(gmtime(&timestamp)));
return 0;
}

输出:

$ gcc a.c && ./a.out
Mon Aug 16 00:54:50 2010

关于c - 如何在 C 中将 unsigned int 值打印为时间字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3529839/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com