Union

Duration: 3 min

This video lesson is available to enrolled students.

Enroll to watch — ISRO Scientist/Engineer 'SC'

AI Summary

An AI-generated summary of this video lecture.

This lecture introduces the Union data structure in C programming as a user-defined datatype that groups variables of different types while sharing the same memory location. The instructor explains that unlike structures, only one member can hold a valid value at any given time because all members occupy the same memory space. The total size of a union is determined by its largest member, illustrated with an example where the character array str[20] dictates a total size of 20 bytes. The lesson demonstrates this behavior through code examples showing how assigning an integer value to one member and then a float to another overwrites the previous data due to shared memory allocation.

Chapters

  1. 0:00 2:00 00:00-02:00

    The instructor defines a Union in C as a user-defined datatype that groups variables of different data types but shares the same memory location. On-screen text explicitly states 'Groups variables of different datatypes, but shares the same memory location' and 'Only one member can hold a value at a time.' The code snippet `union Data {int i; float f; char str[20];};` is displayed, followed by the declaration `union Data d1; //Total size = 20 bytes.` The instructor annotates member sizes (4B for int, 8B for float) and underlines key phrases to emphasize the shared memory concept. The example `d1.i = 10;` is shown to initialize the union.

  2. 2:00 3:14 02:00-03:14

    The lesson continues by demonstrating the overwrite behavior inherent to unions. The instructor shows how assigning a float value, such as `d1.f = 22.5;`, overwrites the previously stored integer value in the same memory space. Visual annotations highlight that the total size remains 20 bytes, determined by the largest member `char str[20]`. The instructor draws arrows to show overlapping memory usage for int, float, and char members. The final code snippet `printf("%d", d1.i);` is presented to illustrate how reading the integer member after a float assignment yields undefined or garbage values due to the shared memory location.

The video provides a foundational understanding of C unions by contrasting them with structures through memory allocation principles. The core concept is that union members share the same physical address, meaning writing to one member invalidates previous values in other members. The size calculation is strictly based on the largest member, ensuring sufficient space for any single type within the union. This behavior is critical for memory-efficient programming where only one data type needs to be stored at a time. The examples clearly show the practical implications of this design, such as data overwriting when switching between int and float assignments within the same union variable.