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

51,823 answers

573 users

How to get the current date and time in London with C

1 Answer

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

int main() {
    // Set the timezone to London
    setenv("TZ", "Europe/London", 1);
    tzset();

    // Get the current time
    time_t now = time(NULL);
    struct tm *local = localtime(&now);

    printf("Current date and time in London: %02d-%02d-%04d %02d:%02d:%02d\n",
           local->tm_mday, local->tm_mon + 1, local->tm_year + 1900,
           local->tm_hour, local->tm_min, local->tm_sec);

    return 0;
}


/*
run:

Current date and time in London: 27-02-2025 07:45:34

*/

 



answered Feb 27, 2025 by avibootz

Related questions

1 answer 74 views
1 answer 200 views
1 answer 176 views
1 answer 129 views
1 answer 136 views
1 answer 282 views
1 answer 121 views
121 views asked Jun 13, 2020 by avibootz
...