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,870 questions

51,793 answers

573 users

How to get the full and short name of the month of a given date in C

1 Answer

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

// time_t mktime(struct tm *timeptr) 
// size_t strftime(char *str, size_t maxsize, const char *format, const struct tm *timeptr)

int main() {
    struct tm info;

    info.tm_year = 2023 - 1900; // from 1900
    info.tm_mon = 6 - 1; // 0..11
    info.tm_mday = 14; // 1..31
    info.tm_hour = 10; // 0..23
    info.tm_min = 02; // 0..59
    info.tm_sec = 15; // 0..59

    time_t t = mktime(&info);

    char buffer[32];

    if (t == -1) {
        printf("mktime error");
    }
    else {
        strftime(buffer, sizeof(buffer), "%B %b", &info);
        puts(buffer);
    }

    return 0;
}




/*
run:

June Jun

*/

 



answered May 14, 2023 by avibootz

Related questions

1 answer 113 views
1 answer 206 views
1 answer 98 views
1 answer 109 views
...