Failing to release a memory block with ________ before the program terminates can result in a memory leak.

  • calloc()
  • free()
  • malloc()
  • realloc()
Failing to release memory with the "free()" function in C can result in a memory leak, where the allocated memory is not properly deallocated, causing the program to consume more memory than necessary.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *