Program to compare the two dates given by the user, C/C++ Programming

Assignment Help:


 THIS PROGRAM IS TO COMPARE THE TWO DATES GIVEN BY THE USER



#include
#include
#include

struct date
 {
  int dd;
  int mm;
  int yy;
 };

date compare(date d1,date d2)
 {
  if (d1.dd   {
   cout<<" 2nd date day is bigger ";
   }
   else if(d2.dd   {
   cout<<" 1nd date day is bigger ";
   }
   else if(d1.dd==d2.dd)
   {
    cout<<" ";
   }
  if (d1.mm   {
   cout<<" 2nd month is bigger ";
   }
  else
   {
   cout<<" 1nd month day is bigger ";
   }
  if(d1.yy>d2.yy)
   {
   cout<<" 1st date is bigger " ;
   }
  else if (d1.dd==d2.dd && d1.mm==d2.mm && d1.yy==d2.yy );
   {
   cout<<" the dates are equal ";
   }
  if(d2.yy>d1.yy)
   {
   cout<<" 2nd date is bigger ";
   }
 }


void main()
  {
  clrscr();
  date d1,d2,ans;
  cout<<" enter the 1st date (dd/mm/yyyy) ";
  cin>>d1.dd;
  cin>>d1.mm;
  cin>>d1.yy;
  cout<<" enter the 2nd date (dd/mm/yyyy) ";
  cin>>d2.dd;
  cin>>d2.mm;
  cin>>d2.yy;
  compare(d1,d2);
  }












Related Discussions:- Program to compare the two dates given by the user

C program for function of divider , C Program for FUNCTION OF DIVIDER ...

C Program for FUNCTION OF DIVIDER int gcd(int , int); void main() {           int m=0,n=0,k=0;           clrscr();           printf("ENTER THE FIRST DIGIT: ");

Recursive function, Write a recursive function recursiveMin that takes an i...

Write a recursive function recursiveMin that takes an integer array, a starting subscript and an ending subscript as arguments, and returns the smallest element in the array. The

C++ ASSIGNMENT, How much does it cost to complete a C++ assignment that is ...

How much does it cost to complete a C++ assignment that is 80% finished??

Boardcoloring, how to fill the blank spaces in the board of 4*4 matrix with...

how to fill the blank spaces in the board of 4*4 matrix with the minimum of 4 colors and the condition is the adjacent element should not have the same colour

Stack, c++ program to to implement multiple stacks using single array

c++ program to to implement multiple stacks using single array

How to use http headers inside php, How to use HTTP Headers inside PHP? Wri...

How to use HTTP Headers inside PHP? Write the statement through which it can be added? HTTP headers can be used in PHP by redirection that is written as: Headers can be

User-defined data type, Explain  U s e r - D e f i n e d D a t a...

Explain  U s e r - D e f i n e d D a t a T y p es? C has Union and Structure as user-defined data types.  C++ has class which looks like structure with a

Open and close ?les for writing, If you have computed a number (stored as a...

If you have computed a number (stored as a ?oating-point value) and want to display this on a plot (i.e. as a character string) you have to convert it into a STRING. That is we wan

Program is to define a class as student, Program is to define a class as st...

Program is to define a class as student: Program is to define a class as student and display the records specific depending upon the number class student  {  private:

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd