100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Other

Structures and Unions in C: A Complete Guide with Examples

Rating
-
Sold
-
Pages
6
Uploaded on
21-01-2025
Written in
2024/2025

This document provides a comprehensive guide to structures and unions in C programming. It covers the key concepts of structure declaration, initialization, and accessing members, along with the differences between structures and unions. You’ll learn how to use unions to save memory, and when to choose a structure over a union. The guide includes step-by-step examples to demonstrate practical applications, such as defining complex data types and managing memory efficiently. Perfect for second-year Computer Science students, this document will help you understand these fundamental concepts and improve your C programming skills.

Show more Read less









Whoops! We can’t load your doc right now. Try again or contact support.

Document information

Uploaded on
January 21, 2025
Number of pages
6
Written in
2024/2025
Type
Other
Person
Unknown

Content preview

Structures and Unions in C
A structure and a union are both user-defined data types in C, used for grouping
different types of variables together under a single name. They differ in how they
manage memory, which affects how the data is stored and accessed.

1. Structures in C
A structure is a collection of variables of different data types grouped together
under one name. Each variable within the structure is known as a member, and
members can be of different data types, including arrays, pointers, and other
structures.

Declaration and Initialization of a Structure

To define a structure, you use the struct keyword. Here’s how you can define and
initialize a structure in C:

#include <stdio.h>

struct Person {
char name[50];
int age;
float height;
};

int main() {
// Declaring and initializing a structure variable
struct Person person1 = {"Alice", 25, 5.6};

// Accessing structure members
printf("Name: %s\n", person1.name);
printf("Age: %d\n", person1.age);
printf("Height: %.2f\n", person1.height);

return 0;
}

, In this example:

 struct Person is the structure definition.
 person1 is a variable of type struct Person.
 The members name, age, and height are accessed using the dot operator
(.).

Accessing Structure Members

You can access the members of a structure using the dot operator (.) if you have
an instance of the structure. For example, person1.name accesses the name
member of the person1 instance.

To access members of a structure through a pointer, you would use the arrow
operator (->).

Example using a pointer to a structure:

#include <stdio.h>

struct Person {
char name[50];
int age;
float height;
};

int main() {
struct Person person1 = {"Bob", 30, 5.9};
struct Person *ptr = &person1;

// Accessing structure members via pointer
printf("Name: %s\n", ptr->name);
printf("Age: %d\n", ptr->age);
printf("Height: %.2f\n", ptr->height);

return 0;
}
$5.19
Get access to the full document:

100% satisfaction guarantee
Immediately available after payment
Both online and in PDF
No strings attached

Get to know the seller
Seller avatar
rileyclover179

Also available in package deal

Thumbnail
Package deal
C Programming Exam Study Guide and Q&A (21 documents)
-
21 2025
$ 110.99 More info

Get to know the seller

Seller avatar
rileyclover179 US
View profile
Follow You need to be logged in order to follow users or courses
Sold
0
Member since
11 months
Number of followers
0
Documents
252
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions