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() 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"

    char buf[64];
    strftime(buf, 64, "%D - %T", tm);

    printf("%s", buf);

    return 0;
}



/*
run:

11/22/23 - 19:54:42

*/

 



answered Nov 22, 2023 by avibootz

Related questions

1 answer 133 views
1 answer 186 views
1 answer 109 views
2 answers 159 views
159 views asked Jun 26, 2021 by avibootz
2 answers 200 views
200 views asked Jan 23, 2022 by avibootz
2 answers 228 views
...