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
...