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

Semrush - keyword research tool

Turn ChatGPT, Claude, Gemini, And CoPilot Into Your Personal Assistant, Business Coach, Content Creator, And More

AFFILIATE MARKETING Your all-in-one performance engine Manage affiliates, creators, and customer referrals in one unified platform—turning every partnership into measurable growth
Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

42,709 questions

55,473 answers

573 users

How to get the full and short name of the day of week of the current date in C

1 Answer

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

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

int main() {
    time_t t = time(NULL);

    struct tm dt = *localtime(&t);

    printf("%d-%02d-%02d\n", dt.tm_year + 1900, dt.tm_mon + 1, dt.tm_mday);

    char buffer[32];

    strftime(buffer, sizeof(buffer), "%A %a", &dt);
    puts(buffer);

    return 0;
}




/*
run:

2023-05-14
Sunday Sun

*/

 



answered May 14, 2023 by avibootz

Related questions

...