Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4116718
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T22:44:36+00:00 2026-05-20T22:44:36+00:00

Is there any system defined function to compare two dates in C/C++? Thanks

  • 0

Is there any system defined function to compare two dates in C/C++?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T22:44:37+00:00Added an answer on May 20, 2026 at 10:44 pm
    1. convert the date (you pick the format) to seconds since the start of the era. use strptime and mktime.
    2. compare the two time_t (seconds) values.
      example using MON-DD-YYYY format:

    CODE:

    #include <time.h>
    time_t to_seconds(const char *date)
    {
        struct tm storage={0,0,0,0,0,0,0,0,0};
        char *p=NULL;
        time_t retval=0;
    
        p=(char *)strptime(date,"%d-%b-%Y",&storage);
        if(p==NULL)
        {
                retval=0;
        }
        else
        {
                retval=mktime(&storage);
        }
        return retval;
    }
    
    int main()
    {
      char *date1="20-JUN-2006";
      char *date2="21-JUN-2006";
      time_t d1=to_seconds(date1);
      time_t d2=to_seconds(date2);
    
      printf("date comparison: %s %s ",date1,date2);
      if(d1==d2) printf("equal\n");
      if(d2>d1)  printf("second date is later\n");
      if(d2<d1)  printf("seocnd date is earlier\n");
     return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any method / API defined to collect system info in osx. I
Is there any Operating System that do not support threading? I read somewhere CLI
Is there any CSS grid system that supports full viewport width? Most Grid System
Is there any sort of out of the box system within SharePoint (i.e. MOSS
Is there any programming language (or type system) in which you could express the
Is there any way to implement pop-ups similar to the system ones on iPhone?
Are there any good open source frameworks for developing computer system emulators? I am
Are there any libraries or methods to mock out the file system in C#
Is there any functionality in Java for pausing the program like system(PAUSE); does in
Is there any workaround to allow actionscript3 write to file system without adobe air?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.