Difference Between Structure And Union

In most of the programming languages like C and C++, structure and union are user-defined data types used to create a set of desired results. Let us understand the difference between these two in this article clearly.

About Structure:

A structure is a user-defined data type. Structures are used to represent data items of different kinds under one single entity. This means a structure can hold data items of different kinds and store them as a record.

The variables in a structure are called its members. To declare a structure, the keyword struct is used before the name of the structure. This informs the compiler that a structure has been created.

struct Student

{

string name;

int roll_no;

};

Here, we declare a structure for storing the information of the students. The name of the structure is the name of the data type that has been created. In this case, the name of the structure is Student.

Student s1, s2;

This is how the variables of student type are created. To add data in these variables we use the dot(.) operator.

s1.name = “Maya”;

s1.roll_no = 2;

s1.grade = 5;

Here is a code for a better understanding:
#include <stdio.h>

#include<bits/stdc++.h>

using namespace std;

struct student

{

string name;

int roll_no;

float marks;

}

int main()

{

student sdt;

cout<<"Enter the student name: ";

cin>>sdt.name;

cout<<"Enter student roll number: ";

cin>>sdt.roll_no;

cout<<"Enter students marks: ";

cin>>sdt.marks;

cout<<"The information you have entered is: \n";

cout<<"Student name: "<<sdt.name<<endl;

cout<<"Student Roll No. is: "<<sdt.roll_no<<endl;

cout<<"Student marks: "<<sdt.marks<<endl;

return 0;

}

 

Output:

In the above case, we enter all the values, and the output gives the result of each value being accessed at the same time. Thus, a student data type is created that can help us to store the records of various students.

About Union

A union is also a user-defined data type that is used to store the information. However, in a union, the memory is allotted only once, and therefore, all the members of a union store the same value.

The declaration of a union and a structure are the same. The only difference is that of a keyword. A union is preceded by the keyword union.

union Student

{

int roll_no;

char grade;

};

Here, we declare a union for storing the information of the students. The name of the union is the name of the data type that has been created. In this case, the name of the union is Student. The variables of this type can be created similar to that of a structure.

Student s1, s2;

This is how the variables of student type are created. Like a structure, the accessing of data is done with the help of the dot(.) operator. However, in a union, the one-time initialization of data is not possible.

This means that if the value of one data member is altered it will affect the values of other data members as well. Moreover, the size of the union is equal to the size of the largest member of that union.

For the considered example, the space allocated to ‘char’ is 1 byte, and that to ‘int’ is 4 bytes, so, the largest size is 4 bytes. Hence, the memory allotted to ‘s1’ and ‘s2’ is 4 bytes each.

Here is a sample code:
#include <stdio.h>

#include <bits/stdc++.h>

using namespace std;

union item

{

int x;

float y;

char ch;

};

int main( )

{

item it;

it.x = 12;

it.ch = 'v';

it.y = 2.24;

cout<<"x = "<<it.x<<endl;

cout<<"ch = "<<it.ch<<endl;

cout<<"y = "<<it.y;

return 0;

}

Output:

In this case, only the last value is correctly displayed, and the rest values are garbage values in the output. It is because, in a union, only the last value is accessible at a given time.

Structure Vs Union Similarities

  • The declaration of a union and a structure have the same syntax.
  • The methods for creating variables and accessing members of the variables are also the same for both.
  • Both, a structure and a union can both be passed as an argument to any function by the methods of the call by value or call by reference.
  • Both structure and union are called container data types that contain an object of any data type, that may include other structures, unions, or arrays as their members.

Also Read: What is Spring Boot | Java Spring Boot in 2024

Structure vs Union Differences

  • A structure can contain multiple values at a time, whereas a union can store only a single value at a time.
  • While a structure assigns separate memory locations for each of its members, the members of a union share the same memory location.
  • The total size of a structure is larger than the total size of a union.
  • This is because the size of a structure is the sum of the size of all the members of the structures
  • And the size of the union is the size of the member of the largest type.
Property Structure Union
Keyword struct union
Memory Separate memory is allotted to each member of a structure All the members are allotted the same memory
Size Sum of sizes of all members. Size of the largest of all the data members
Adding a value Altering the value of a member of a structure will not affect the other value of the structure Altering the value of one member will affect the other member values of the union
Storing Values A structure can store multiple values at any point in time A union can only store a single value at one point in time.