×

How to Avoid Structure Padding in C

Generally, when an object of some structure type is declared, some contiguous memory will be allocated in block form, which will be allocated to structure members. To understand structure padding we need to get an idea of how memory is allocated to structure variable.

Syntax Example

struct example
{
char x;
char y;
int z;
};


Memory Allocation in Structure

If we try to calculate the size, then we say it is 6 bytes why because we have two char values and one int value which is 4 bytes, and the character is 1 byte each, so finally, the memory allocated is 6 bytes, but we are wrong it is not 6 bytes.

This is because there is a concept called "Structure padding."

Structure padding

The basic thing is processor does not read one byte at a time from memory. It reads one word at a time.

For example, if we have a 32-bit processor, it can access 4 bytes at a time means 4 bytes at a time. A 64-bit processor can access 8 bytes simultaneously, meaning the word size is 8.

The memory looks like this.

How To Avoid Structure Padding In C

Problem

Well, in one CPU cycle, one word can be accessed, if we consider a 32-bit processor here,4 bytes can be accessed means character x, character y, and two bytes of int can be accessed here at a time. Here, we have no problem with char a and char b. Still, whenever we want the value stored in "z," we need two cycles to execute it completely, whereas, in the first cycle, only the first two parts are accessed. In the second cycle, the last two bytes are executed means here simply CPU cycles are wasted unnecessarily. Because of this problem, the concept of padding came into the picture.

Structure padding

To align the facts in reminiscence, one or extra empty bytes (addresses) are inserted (or left empty) among reminiscence addresses which might be allotted for different shape contributors even as reminiscence allocation. This idea is known as shape padding.

The architecture of a laptop processor is any such manner that it could examine one word (four-byte in 32-bit processor) from reminiscence at a time.

To employ this gain of processor, facts are usually aligned as a four-byte package deal which ends up in empty insert addresses among different member addresses.

Because of this shape padding idea in C, the shape's length is usually no longer identified as what we think.

We can save the number of cycles by using the concept called "padding".

Here we create an empty room or space as the variable "z" is overlapping between two CPU cycles. We add space.

It adds 2 bytes empty bytes.

Total=1 byte+1 byte+2 bytes+4 bytes=8 bytes.

Memory Allocation Example

If we change the order like char, int and char then it occupies12 bytes. Check the below image for the memory allocation idea.

How To Avoid Structure Padding In C

Structure Padding In C

#include<stdio.h>
struct example
{
char x;
char y;
int z;
};
int main()
{
struct example e;
printf("The size is %d",sizeof(e));
}

Output:

How To Avoid Structure Padding In C

Here the allocation will be like this. The space is added automatically. Here 4 bytes will be accessed.

How To Avoid Structure Padding In C

First CPU cycle:

char x will be accessed

Second CPU cycle:

int y will be accessed

Third CPU cycle:

char z will be accessed

So, the total size will be 12 bytes for 32-bit architecture.

Pragma

When we use structure padding, the CPU utilization is good, and we don't waste any extra cycles, but memory is wasted here. So, to avoid this structure padding and save memory or to stick with original memory, we need to use "pragma".

#include <stdio.h>
// Here, simply, we are forcing the compiler to use 1-byte packing
#pragma pack(1)
struct example {
char x;
char y;
int z;


};
  
int main()
{
 struct example e;
printf("The size is %d",sizeof(e));
}








Output:

How To Avoid Structure Padding In C

Here the size is 6 bytes only instead of 8 bytes as we used pragma concept.

Advantages of Structure Padding

Padding will increase the processor's overall performance on the memory penalty, in shape, or union records contributors aligned according to the dimensions of the best bytes member to save you the loss or penalty of overall performance.

Disadvantages of structure padding

1. It is slightly inefficient

2. The space will be wasted here. Sometimes memory usage plays a key role and here it is used unnecessarily.

3. It won't be binary, and wire compatibility is more.


Related Topics

C program to Store Information of Students Using Structure

What is the Structure in C? User-defined data types include structures. Structures aid your ability to combine things of various categories into a single group. Like arrays, it operates similarly. A...

3 minutes read.

Inline Function in C

Inline Function in C A normal function will become an inline function when the function prototype of that function is prepended with the keyword "inline". Inline functions are the function where...

4 minutes read.

C vs Java Strings

String in C In C, we can define a string as a bunch of characters. A character array is distinguished from a string by the presence of the special character '\0'...

5 minutes read.

Fseek Function in C

The fseek function is a function in the C standard library that changes the position of the file pointer in a stream-oriented file. It is typically used to move the...

3 minutes read.

Quick sort in C

Quick-sort, in the same way, like a merge sort, follows the principle of the divide and conquer algorithm. It then picks an element as pivot and partitions, and the given...

4 minutes read.

Builtin functions of GCC compiler

Certain built-in functions are present in the GCC compiler. These features are as follows: Function_ built in_popcount (x) The number of 1s in data of the integer type can be counted using...

3 minutes read.

Error handling in C

Error handling in C: The C programming standard does not provide direct convenience for handling the errors. However, being a system programming language, it definitely will give access to handling...

4 minutes read.

Difference between Pre-increment and Post-increment in C

Increment operators are the kind of operators that are used to increment the cost of the operand by way of 1. In different words, the increment operator is an operator...

4 minutes read.

User Defined Functions in C

C Functions: A function is defined as a block of code that is used to perform some specific task. In functions, we use flower brackets ({}) which contain the set of programming...

5 minutes read.

fork() in C

Introduction To create a new function in the system, there is a need for a system call, i.e. fork system call. It is also known as the child process. These child...

2 minutes read.

Nested loop in C

Definition of Nested Loop A nested loop is generally used when we want to run a loop statement inside another loop statement. This kind of loop is also known as a...

3 minutes read.

Diffie-Hellman Algorithm in C

Background: A method of public-key encryption known as elliptic curve cryptography (ECC) is based on the algebraic structure of elliptic curves over finite fields. To ensure equal security, ECC encryption requires fewer...

4 minutes read.

C Pointers

Pointers in C A pointer is a variable, which contains the address of another variable, i.e., it’s a variable which has the address of another variable as its value. The utilization...

4 minutes read.

Multilevel Feedback Queue Scheduling (MLFQ) CPU Scheduling

In this article, you will learn how to initialise an array to 0 in C In C, an array is declared as: char ZEROARRAY[2022]; The global scope changes at runtime to all zeros....

3 minutes read.

For Loop in C

The Syntax of For Loop for (initialization statement; test expression; update statement) {     /* main body of the FOR loop */ } How does For loop work? In for loop, the initialization command is...

3 minutes read.

File Handling in C

File Handling is used to open, read, write, search and close file.  C files I/O functions handles data on secondary storage device. File handling function: There are varioushandling functions in C. Function Operation fopen() It is...

4 minutes read.

Call by Value and Call by Reference in C

Call by reference and call by value are two different ways of passing arguments to a function in C programming language. Call by reference means that the called function is...

4 minutes read.

What is required in each C Program?

Each C program must require one function, i.e., main() function. It is because when we execute the C program, C compiler looks for the main() function, and from here only...

5 minutes read.

What is 2s Complement in C?

The complement of 2s in C is generated from the 1s in C. As we know, the 1s complement of a binary number is generated by converting bit 1 to...

4 minutes read.

Banker’s Algorithm in C

Introduction Before doing a "s-state" check to look for potential activities and deciding if allocation should be allowed to continue, the banker's algorithm, a resource allocation and deadlock avoidance algorithm, tests...

5 minutes read.