How to get tomorrows date in C

1 Answer

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

int main() {
    // Get the current time
    time_t now = time(NULL);
    struct tm tomorrow;

    // Convert time_t to struct tm
    localtime_r(&now, &tomorrow);

    // Add one day to the current date
    tomorrow.tm_mday += 1;

    // Normalize the time structure (handles month/year overflow)
    mktime(&tomorrow);

    printf("Tomorrow's date is: %04d-%02d-%02d\n",
           tomorrow.tm_year + 1900, 
           tomorrow.tm_mon + 1, 
           tomorrow.tm_mday);

    return 0;
}



/*
run:

Tomorrow's date is: 2025-04-10

*/

 



answered Apr 9, 2025 by avibootz

Related questions

1 answer 145 views
2 answers 106 views
1 answer 80 views
1 answer 136 views
1 answer 108 views
108 views asked Apr 9, 2025 by avibootz
...