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 functions

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

A C++ program to illusrate data conversion user defined data types using functions.

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

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


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

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

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

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

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

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

        dmy(int,int,int);

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

        operator date();
    };

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

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

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

 dmy::operator date()
    {
       char temp[3]={'\0'};
       char str[9]={'\0'};

       itoa(day,str,10);
       strcat(str,"/");
       itoa(month,temp,10);
       strcat(str,temp);
       strcat(str,"/");
       itoa(year,temp,10);
       strcat(str,temp);

       return date(str);
    }


 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 functions 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

 
Please enter your Comment

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

 
Anubhav Srivastava from Australia Comment on: Dec 20
can somebody please illustrate this prog. With an output?

View All Comments