How to convert time structure to a string in C

1 Answer

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

int main(void)
{
    time_t now;
    time(&now);

    struct tm tms = *localtime(&now);
    
    // 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", buf);
    
    return 0;
}



/*
run:

Fri 2022-03-25 08:27:02 UTC

*/

 



answered Mar 25, 2022 by avibootz
edited Mar 25, 2022 by avibootz

Related questions

1 answer 102 views
102 views asked Jun 7, 2024 by avibootz
2 answers 160 views
1 answer 172 views
1 answer 135 views
135 views asked Aug 23, 2021 by avibootz
1 answer 155 views
155 views asked Aug 22, 2021 by avibootz
2 answers 256 views
...