Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Homework HelpRSS Feeds

Program to illustrate the relationship b/w union and structure

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

A C++ Program to illustrate the relationship b/w union and structure.

Code for Program to illustrate the relationship b/w union and structure in C++ Programming

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

 /*************************************************************************///--------------------------------  Str  --------------------------------///*************************************************************************/struct str
    {
       int number_1;
       float number_2;
    };

 /*************************************************************************///---------------------------------  uni  -------------------------------///*************************************************************************/

 union uni
    {
       int number_1;
       float number_2;
    };


 main()
    {
       clrscr();

       struct str structure_element;
       union uni union_element;

       cout<<"\n ********** Structure Elements **********"<<endl;

       cout<<"\t Enter the value of number_1 = ";
       cin>>structure_element.number_1;

       cout<<"\t Enter the value of number_2 = ";
       cin>>structure_element.number_2;

       cout<<"\n ********** Union Elements **********"<<endl;

       cout<<"\t Enter the value of number_1 = ";
       cin>>union_element.number_1;

       cout<<"\t Enter the value of number_2 = ";
       cin>>union_element.number_2;

       getch();
       clrscr();

       cout<<"\n ********** Structure Elements **********"<<endl;

       cout<<"\t Value of number_1 = ";
       cout<<structure_element.number_1<<endl;

       cout<<"\t Value of number_2 = ";
       cout<<structure_element.number_2<<endl;

       cout<<"\n ********** Union Elements **********"<<endl;

       cout<<"\t Values of number_1 = ";
       cout<<union_element.number_1<<endl;

       cout<<"\t Value of number_2 = ";
       cout<<union_element.number_2<<endl;

       cout<<"\n\n ********** Structure Elements **********"<<endl;
       cout<<"\t Size of structure_element = "<<sizeof(struct str)<<endl;

       cout<<"\n ********** Union Elements **********"<<endl;
       cout<<"\t Size of union_element = "<<sizeof(union uni)<<endl;

       getch();
       return 0;
    }
  
Share: 



Easy Tutor
Easy Tutor author of Program to illustrate the relationship b/w union and structure 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].

 
No Comment Found, Be the First to post comment!