Dynamic Memory Allocation


Dynamic memory allocation in programming refers to the ability to allocate memory for variables or data structures during the runtime of a program. Unlike static memory allocation, where memory is assigned at compile time, dynamic memory allocation allows the program to request and release memory as needed while the program is running.

In languages like C, C++, and similar low-level languages, dynamic memory allocation is often performed using functions provided by the standard library, such as malloc, calloc, realloc, and free in the <stdlib.h> header.

Here's an overview of these functions with examples:

malloc (Memory Allocation):
Stands for "memory allocation."
Allocates a specified number of bytes of memory.
Returns a pointer to the first byte of the allocated memory.

#include <stdlib.h>
main()
{
int *arr;
int size = 5;

arr = (int*)malloc(size * sizeof(int));

if (arr == NULL) {
    // Memory allocation failed
    printf("Memory allocation failed.\n");
} else {
    // Memory allocation successful
    // Use the 'arr' pointer to access the allocated memory
    // Don't forget to free the memory when done
    free(arr);
}
}

calloc (Contiguous Allocation):
Stands for "contiguous allocation."
Allocates a specified number of blocks of memory, each with a specified number of bytes.
Initializes the allocated memory to zero.

#include <stdlib.h>
main()
{
int *arr;
int size = 5;

arr = (int*)calloc(size, sizeof(int));

if (arr == NULL) {
    // Memory allocation failed
    printf("Memory allocation failed.\n");
} else {
    // Memory allocation successful
    // Use the 'arr' pointer to access the allocated memory
    // Don't forget to free the memory when done
    free(arr);
}
}

realloc (Re-Allocation):
Stands for "re-allocation."
Changes the size of the previously allocated memory block.
Returns a pointer to the beginning of the reallocated memory block.

#include <stdlib.h>
main()
{
int *arr;
int size = 5;

arr = (int*)malloc(size * sizeof(int));

// Code to use the allocated memory

// Need more space
size = 10;
arr = (int*)realloc(arr, size * sizeof(int));

if (arr == NULL) {
    // Memory reallocation failed
    printf("Memory reallocation failed.\n");
} else {
    // Memory reallocation successful
    // Use the 'arr' pointer to access the reallocated memory
    // Don't forget to free the memory when done
    free(arr);
}
}

free:
Deallocates the memory previously allocated by malloc, calloc, or realloc.
It's essential to free dynamically allocated memory to prevent memory leaks.

#include <stdlib.h>
main()
{
int *arr;
int size = 5;

arr = (int*)malloc(size * sizeof(int));

// Code to use the allocated memory

// Free the allocated memory when done
free(arr);
}
Remember to check if memory allocation was successful by verifying if the returned pointer is NULL. Additionally, always free the allocated memory when it is no longer needed to avoid memory leaks in your program.

Dynamic memory allocation is particularly useful when the size of data structures is not known at compile time or when memory needs to be managed more flexibly. However, it requires careful handling to avoid memory leaks or accessing memory that has already been freed (dangling pointers). Memory allocated dynamically should be released using free when it's no longer needed to avoid memory leaks.

Comments

Popular posts from this blog

Data Structures CST 201 KTU Third Semester Syllabus Notes and Solved Questions- Dr Binu V P 984739060

Stack

Quick Sort