Javatpoint Logo
Javatpoint Logo

realloc in C

The "realloc" is a standard library function in C that is used to resize dynamically allocated memory blocks. The function takes two arguments: a pointer to a previously allocated memory block and the new size to which the memory block needs to be resized.

The function works as follows:

  • If the pointer passed to realloc is NULL, it behaves like malloc and allocates a new memory block of the given size.
  • If the size passed to realloc is zero, it behaves like free and deallocates the memory block pointed to by the pointer.
  • If the size passed to realloc is greater than the size of the previously allocated memory block, it will try to extend the existing memory block. Suppose the memory block cannot be expanded due to the system's lack of memory. It will allocate a new memory block of the specified size, copy the contents of the old block to the new block, release the old block, and return a reference to the new block.
  • If the size passed to realloc is less than or equal to the size of the previously allocated memory block, it will try to shrink the existing memory block. If the memory block can be shrunk, it will return a pointer to the same memory block. It will allocate a new block of memory of the specified size, copy the contents of the old block to the new block, release the old block, and return a pointer to the new block if the memory block can't be shrunk.

It is important to note that realloc may move the memory block to a new location if it cannot extend or shrink the existing block in place. It means that any pointers or references to the old block become invalid after the call to realloc.

Example code showing the usage of "realloc":

Output

1 2 3 4 5

Explanation:

In this example, we first allocate a memory block to hold 3 integers using malloc. After that, we set the values of the integers and print them out. Next, we use realloc to resize the memory block to hold 5 integers. We set the values of the new integers and print them out. Finally, we free the memory block using free.

Features of realloc

There are various features of realloc. Some important features of realloc are as follows:

  • It is important to check the return value of realloc for errors. If realloc returns NULL, the memory allocation has failed, and the old memory block is still valid. In this case, the program should handle the error and possibly exit or return an error code.
  • When resizing a memory block with realloc, the contents of the old memory block may be preserved or moved to a new location. It is not guaranteed which will happen, so you should always assume that the old memory block may be moved and update any pointers or references to the block accordingly.
  • In most cases, "Realloc" is more effective than creating a new memory block and transferring the information from the old block to the new block. It is because realloc can take advantage of any unused memory space adjacent to the old block, whereas allocating a new block requires finding a new contiguous block of memory and copying the data.
  • When shrinking a memory block with realloc, any data beyond the new size will be lost. It is important to be careful when using realloc to avoid unintentionally losing data.
  • realloc is a relatively low-level function that can be error-prone if used incorrectly. It is often better to use higher-level data structures or libraries that handle memory management automatically, such as std::vector in C++ or ArrayList in Java.

Syntax of realloc

The syntax of realloc is as follows:

void* realloc(void* ptr, size_t size);

Where ptr is the pointer to the memory block previously allocated with malloc, calloc, or realloc, and size is the new size of the memory block in bytes. If the allocation failed, the function would return a pointer to the new memory block or NULL.

Some other example codes to illustrate the usage of 'realloc' in C:

Implementing a dynamic stack

One common use case of 'realloc' is to implement a dynamic stack. Here is an example:

Output

5
4
3
2
1

Explanation:

In this implementation, we use malloc to allocate memory for the stack and its array of size. We use realloc in the push function to resize the array if it becomes full. We also implement a pop function to remove and return the top element of the stack, and a free_stack function to free the memory allocated for the stack and its array.

  • The size argument to realloc can be zero. In this case, realloc behaves like free and deallocates the memory block pointed to by ptr.
  • Realloc returns NULL if it is unable to allocate memory, leaving the initial memory block unaltered. In this case, it is important to avoid overwriting the original pointer, as it will cause a memory leak.
  • It is important to note that the memory block pointed to by ptr must have been allocated using malloc, calloc, or realloc.
  • When resizing a block of memory using realloc, the contents of the original block are preserved up to the smaller of the old and new sizes. The extra memory is uninitialized if the new size is more than the old size.
  • It is generally a good idea to use a temporary variable to store the result of realloc, in case it returns NULL. It allows you to avoid overwriting the original pointer and causing a memory leak.
  • When resizing an array, the new size should be specified in terms of the desired number of elements, not the total number of bytes. It is because realloc works with pointer types, not byte types. For example, if you want to resize an array of integers to have 10 elements, you should pass 10 * sizeof(int) as the second argument to realloc.
  • It's important to use the appropriate size when copying the elements from the old array to the new array when resizing an array. If you use the wrong size, you may end up copying too much or too little data, leading to memory corruption or other errors. For example, if you are resizing an array of integers and you copy the elements using memcpy, you should use sizeof(int) as the size argument.
  • If you are resizing an array of structs, keep in mind that the memory layout of the struct may change if you add or remove It can cause problems if you're relying on the old memory layout to access the fields of the struct. In this case, you may need to manually copy the fields to the new array using a loop, rather than relying on memcpy.
  • When resizing an array, keep in mind that realloc may need to move the memory block to a new location if there isn't enough contiguous memory available. It can be slow if the array is very large since realloc needs to copy all the elements to the new location. If you are working with very large arrays, it may be more efficient to allocate a new array using malloc and copy the elements manually using a loop.






Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA