Programming with Passion

Make the best out of everything.

Friday, 8 April 2016

What is realloc() and free()

What is realloc() and free()? What is difference between them?
  • void* realloc (void* ptr, size_t size)
This function is used to change the size of memory object pointed by address ptr to the size given by size. If ptr is a null pointer, then realloc will behave like malloc(). If the ptr is an invalid pointer, then defined behaviour may occur depending the implementation. Undefined behaviour may occur if the ptr has previously been deallocated by free(), or dealloc() or ptr do not match a pointer returned by an malloc(), calloc() or realloc().
  • void free (void* ptr)

This function is used to deallocate a block of memory that was allocated using malloc(), calloc() or realloc(). If ptr is null, this function does not doe anything.

No comments:

Post a Comment