Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to display date and time using strftime() include UNIX time in C

1 Answer

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

int main() {
    time_t curtime;
    time(&curtime);
    
    struct tm *tm = localtime(&curtime);

    // size_t strftime(char *str, size_t maxsize, const char *format, const struct tm *timeptr)
    
    // %D = date = %m/%d/%y"
    // %T = time = "%H:%M:%S"
    // %s = UNIX time
    
    char buf[64];
    strftime(buf, 64, "%D - %T %s", tm);
    
    printf("%s", buf);

    return 0;
}



/*
run:

11/22/23 - 17:59:52 1700675992

*/

 



answered Nov 22, 2023 by avibootz
...