Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Object Oriented ProgrammingRSS Feeds

Program to illusrate data conversion user defined data types using constructor

Posted By: Easy Tutor     Category: C++ Programming     Views: 5723

A C++ Program to illusrate data conversion user defined data types using constructor.

Code for Program to illusrate data conversion user defined data types using constructor in C++ Programming

 #include<iostream.h>
 #include<string.h>
 #include<stdlib.h>
 #include<conio.h>


 /*************************************************************************///------------------------------  dmy  ----------------------------------///*************************************************************************/class dmy
    {
       private:
        int day;
        int month;
        int year;

       public:
        dmy()
           {
              day=month=year=0;
           }

        dmy(int,int,int);

        int get_day()
           {
              return day;
           }

        int get_month()
           {
              return month;
           }

        int get_year()
           {
              return year;
           }

        void show_date()
           {
              cout<<"\t Date is : "<<day<<":"<<month<<":"<<year<<endl;
           }
    };

 /*************************************************************************///------------------------------  date  ---------------------------------///*************************************************************************/class date
    {
       private:
        char str[9];

       public:
        date()
           {
              str[0]='\0';
           }

        date(char *s)
           {
              strcpy(str,s);
           }

        date(dmy);

        void show_date()
           {
              cout<<"\t Date is = "<<str<<endl;
           }
    };


 /*************************************************************************//*************************************************************************///------------------------  Function Definitions  -----------------------///*************************************************************************//*************************************************************************//*************************************************************************//*************************************************************************///------------------------------  dmy  ----------------------------------///*************************************************************************//*************************************************************************//*************************************************************************///---------------------------  dmy(int,int,int)  ------------------------///*************************************************************************/

 dmy::dmy(int d,int m,int y)
    {
       day=d;
       month=m;
       year=y;
    }

 /*************************************************************************//*************************************************************************///------------------------------  date  ---------------------------------///*************************************************************************//*************************************************************************//*************************************************************************///---------------------------  date(dmy)  -------------------------------///*************************************************************************/

 date::date(dmy t)
    {
       int d=t.get_day();
       int m=t.get_month();
       int y=t.get_year();

       char temp[3]={'\0'};

       itoa(d,str,10);
       strcat(str,"/");
       itoa(m,temp,10);
       strcat(str,temp);
       strcat(str,"/");
       itoa(y,temp,10);
       strcat(str,temp);
    }

 /*************************************************************************//*************************************************************************///-----------------------------  Main( )  -------------------------------///*************************************************************************//*************************************************************************/

 main()
    {
       clrscr();

       date d_1;

       dmy d_2(6,10,81);

       d_1=d_2;

       cout<<"\n Value of d_1 is : "<<endl;
       d_1.show_date();

       cout<<"\n Value of d_2 is : "<<endl;
       d_2.show_date();

       getch();
       return 0;
    }
  
Share: 



Easy Tutor
Easy Tutor author of Program to illusrate data conversion user defined data types using constructor is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

Related Articles and Code:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!