How to show current date in format ddd yyyy-mm-dd hh:mm:ss zzz 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:30:04 UTC
 
*/

 



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

Related questions

1 answer 170 views
1 answer 148 views
1 answer 176 views
1 answer 161 views
2 answers 225 views
1 answer 164 views
...