
Union:
In C++, the union is a user-define data type, which contains different type of elements with different lengths.
- It uses single memory location to hold more than one variable. It takes the memory of the largest data type.
- It conserves memory as it stores all the members in the same memory location.
- Union variable can initialize in main function within the program. Then initialize the union members using the union variable.
- Union variable can be declared in the type of array and the entire array elements can be accessed through a loop.
Declaration of union:
The declaration of union is the same as a structure with the only difference that, instead of using a keyword “struct”, the keyword “union” should be used.
Example:
union Score
{
int rollNo;
float marks;
};
The “Score” is the union variable which is defined with the two members: “rollNo( a int)” and “marks (a float)”. The union variable will take up as much memory as the largest member.
Declaration of union for the given members:
Declaration of union for the “letter”, “whole”, “real” members are given as follows:
union ThreeTypes
{
char letter;
int whole;
double real
};
The “ThreeTypes” is the union variable which is defined with three members: “letter” as “char”, “whole” as “int” and “real” as “double”.
- The union variable “ThreeTypes” will only take up the memory of “double” as it holds the largest size when compared to the “int” and “char” data types.
- The size of the “double” is 4 bytes and the size of the “int” is 2 bytes and that of “char” is 1 byte.
Defining an array for union:
An array of union can be defined in the form of an array which is used to implement multiple values in a union. It can be accessed through its index value.
Definition of an array of union for the above “ThreeTypes”:
ThreeTypes values [50];
The “values” is a variable in the type of union “ThreeTypes”. The size of the “values” is “50”.
“for” loop:
In some cases it is necessary to track number of times the loop gets executed. So C++ provides such type of control loop is known as “for” loop.
- “for” loop is also referred as count-controlled loop; it contains three process as follows:
- Initialization
- Compare and
- Update
- It is possible to initialize more than one variable in loop expression.
Syntax:
The syntax for the “for” loop is as follows:
//for loop condition
for (initialization; Compare; Update)
{
//statement
}

Want to see the full answer?
Check out a sample textbook solution
Chapter 11 Solutions
Starting Out with C++ from Control Structures to Objects, Student Value Edition plus MyProgrammingLab with Pearson eText -- Access Card Package (8th Edition)
- I need to make a parallel version of this sequential code.arrow_forwardBenefits of using arrays as instance variables: What are the advantages of incorporating arrays as instance variables within a class? Initializing and managing arrays: How do you initialize and manage arrays within class constructors and mutators (setters)? Example of using arrays as instance variables: Share an example where you have used arrays as instance variables and discuss its application in a real-world scenario. Common mistakes with arrays as instance variables: What are some common mistakes to avoid when working with arrays as instance variables? Information hiding violations: What is the potential violation of information hiding when using arrays as instance variables? How can this be resolved?arrow_forwardDo you think that computers should replace teachers? Give three references with your answer.arrow_forward
- Is online learning or face to face learning better to teach students around the around the world? Give reasons for your answer and provide two references with your response. What are benefits of both online learning and face to face learning ? Give two references with your answer. How does online learning and face to face learning affects students around the world? Give two references with your answer.arrow_forwardExplain Five reasons if computers should replace teachers. Provide three references with your answer. List three advantages and three disadvantages face to face learning and online learning may have on children. Provide two references with your answer.arrow_forwardYou were requested to design IP addresses for the following network using the address block 10.10.10.0/24. Specify an address and net mask for each network and router interfacearrow_forward
- For the following network, propose routing tables in each of the routers R1 to R5arrow_forwardFor the following network, propose routing tables in each of the routers R1 to R5arrow_forwardUsing R language. Here is the information link. http://www.cnachtsheim-text.csom.umn.edu/Kutner/Chapter%20%206%20Data%20Sets/CH06PR18.txtarrow_forward
- Using R languagearrow_forwardHow can I type the Java OOP code by using JOptionPane with this following code below: public static void sellCruiseTicket(Cruise[] allCruises) { //Type the code here }arrow_forwardDraw a system/level-0 diagram for this scenario: You are developing a new customer relationship management system for the BEC store, which rents out movies to customers. Customers will provide comments on new products, and request rental extensions and new products, each of which will be stored into the system and used by the manager for purchasing movies, extra copies, etc. Each month, one employee of BEC will select their favorite movie pick of that week, which will be stored in the system. The actual inventory information will be stored in the Entertainment Tracker system, and would be retrieved by this new system as and when necessary. Example of what a level-0 diagram looks like is attached.arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





