How to convert Unix timestamp (epoch) to date in C

1 Answer

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

int main(void)
{
    time_t epoch = 1789575292;

    struct tm tms = *localtime(&epoch);
    
    // Format: ddd yyyy-mm-dd hh:mm:ss zzz
    char buf[64];
    strftime(buf, sizeof(buf), "%a %Y-%m-%d %H:%M:%S %Z", &tms);
    
    printf("%s\n", buf);
    
    return 0;
}



/*
run:

Wed 2026-09-16 16:14:52 UTC

*/

 



answered Mar 25, 2022 by avibootz

Related questions

1 answer 154 views
1 answer 153 views
1 answer 132 views
1 answer 120 views
1 answer 132 views
1 answer 156 views
3 answers 225 views
...