When you declare a variable or an array of a data type, the space occupied by them in the memory of the system remains constant throughout the program. At times, the constant space allocated during compile-time isn’t enough. In that case, the concept of dynamic memory allocation in C comes to the rescue. Learn more about dynamic memory allocation from this article.
What is Dynamic Memory Allocation in C?
Dynamic memory allocation involves the manual allocation and clearing of memory as per programming requirements. Dynamic memory in C gets managed and served with pointers pointing toward the newly allocated memory space in the heap area.
This concept helps with memory allocation in C even during run-time without any hassle. While automatic memory management leverages the stack, dynamic memory allocation in C uses the heap.
Read: Data Science, Artificial Intelligence & Machine Learning

POSTGRADUATE PROGRAM IN
Multi Cloud Architecture & DevOps
Master cloud architecture, DevOps practices, and automation to build scalable, resilient systems.
Understanding the Difference Between Static and Dynamic Memory Allocation
Here is a list of difference between static and dynamic memory allocation in C:
| Static Memory Allocation | Dynamic Memory Allocation |
|---|---|
| Constant or invariable memory is reserved at compile-time and cannot be modified. | Dynamic memory allocation in C is reserved at run-time and can be modified easily. |
| Also called compile-time memory allocation in C. | Dynamic memory allocation in C is also called run-time memory allocation. |
| Unable to allocate or deallocate a memory block during run-time. | Can support the allocation and deallocation of a memory block during run-time. |
| Static memory allocation in C uses stack space. | Dynamic memory allocation in C uses heap space. |
| Does not support memory reusability while the program runs. Therefore, it is less efficient. | Supports reusability while the program is running, which makes it highly efficient. |
Learn: What are the Differences Between Machine Learning and Deep Learning?
Dynamic Memory Allocation in C
The <stdlib.h> library comes with the following functions that support dynamic memory allocation:
The Malloc() Function
The malloc() function is primarily used for dynamic memory allocation in C. This function helps allocate a memory block dynamically. It conserves memory space of a particular size. It delivers a null pointer that points to the memory location.
The returned pointer is usually of the void type. Therefore, you will be able to assign the C malloc() function to all pointers.
Syntax of Malloc()
The syntax of malloc() dynamic memory allocation in C is as follows:
ptr = (cast_type *) malloc (byte_size);The ptr refers to a pointer of cast_type. The C malloc() function delivers a pointer to the allocated memory of byte_size.
The malloc() function in dynamic memory allocation is used with the character data type along with complex data types like structures.
Discover the concept of convolutional neural networks.
C Calloc() Method
The calloc or contiguous allocation method helps with the dynamic memory allocation of a specified number of blocks of a particular type. The calloc method for dynamic memory allocation in C is quite similar to the malloc method. However, you will come across some primary differences between the two, which are as follows:
- The calloc method comes with two arguments or parameters.
- The calloc method initializes every block with a default value of 0.
Syntax of C Calloc
The syntax for the calloc() method for dynamic memory allocation in c is as follows:
ptr = (cast-type*)calloc(n, element-size);In this case, n refers to the number of elements. Meanwhile, element size describes the size of every element.
In case the space isn’t enough, the allocation will fail and deliver a NULL pointer.
Explore: What is Arrays in C, C++ | Everything you Need to Know
The Free() Function
The free() method for dynamic memory allocation is primarily used for deallocation. It can help you dynamically deallocate the memory. The memory allocated using the different methods for memory allocation in C does not get deallocated on its own. Therefore, the free method can help with minimzing memory wastage by freeing it.
Syntax of Free() Function
The syntax for the free() function for memory allocation in C is as follows:
free(ptr);
An example of the free() function is as follows:
#include
#include
int main()
{
// This pointer will hold the
// base address of the block created
int *ptr, *ptr1;
int n, i;
// Get the number of elements for the array
n = 5;
printf("Enter number of elements: %d\n", n);
// Dynamically allocate memory using malloc()
ptr = (int*)malloc(n * sizeof(int));
// Dynamically allocate memory using calloc()
ptr1 = (int*)calloc(n, sizeof(int));
// Check if the memory has been successfully
// allocated by malloc or not
if (ptr == NULL || ptr1 == NULL) {
printf("Memory not allocated.\n");
exit(0);
}
else {
// Memory has been successfully allocated
printf("Memory successfully allocated using malloc.\n");
// Free the memory
free(ptr);
printf("Malloc Memory successfully freed.\n");
// Memory has been successfully allocated
printf("\nMemory successfully allocated using calloc.\n");
// Free the memory
free(ptr1);
printf("Calloc Memory successfully freed.\n");
}
return 0;
}
Output:
Enter number of elements: 5
Memory successfully allocated using malloc.
Malloc Memory successfully freed.
Memory successfully allocated using calloc.
Calloc Memory successfully freed.
Malloc() Vs Calloc()
Here is a list of difference between Malloc() Vs Calloc() in detail.
| Malloc() Method | Calloc() Method |
|---|---|
| Used to allocate a single memory block during run-time | Used to allocate multiple memory blocks during run-time |
| Can’t initialize the allocated memory block because it contains some garbage value | Can initialize all the allocated memory blocks with zero value |
| Takes a single argument, which is the size of a memory block that should be allocated | Takes two arguments, which is the number of elements and the size of one element to be allocated |
Understand the Advantages and Disadvantages of Arrays in C, C++ and Java.

82.9%
of professionals don't believe their degree can help them get ahead at work.
Conclusion
Programmers benefit largely from learning about dynamic memory allocation in C++ and C. Dynamic memory allocation can be used with the malloc() and calloc() library functions. Meanwhile, the free() method is useful for freeing up memory space.
How can I allocate memory dynamically using the malloc() function in C?
How do I deallocate dynamically allocated memory using the free() function in C?
Can I reallocate memory dynamically after it has been allocated using malloc()?
What are the potential issues or errors that can arise with dynamic memory allocation in c?
How can I avoid memory leaks when working with dynamic memory allocation in C?
Updated on December 10, 2024
