Using free() Function in C

By Daniel Malcolm Viewed: 32045 times Emailed: 263 times Printed: 248 times Bookmark and Share



When you allocate memory with either malloc() or calloc(), it is taken from the dynamic memory pool that is available to your program. This pool is sometimes called the heap, and it is finite. When your program finishes using a particular block of dynamically allocated memory, you should deallocate, or free, the memory to make it available for future use. To free memory that was allocated dynamically, use free(). Its prototype is

void free(void *ptr);

The free() function releases the memory pointed to by ptr. This memory must have been allocated with malloc(), calloc(), or realloc(). If ptr is NULL, free() does nothing. Sample program below demonstrates the free() function.

Using free() to release previously allocated dynamic memory.

1: /* Using free() to release allocated dynamic memory. */
2:
3: #include <stdio.h>
4: #include <stdlib.h>
5: #include <string.h>
6:
7: #define BLOCKSIZE 30000
8:
9: main()
10: {
11:     void *ptr1, *ptr2;
12:
13:     /* Allocate one block. */
14:
15:     ptr1 = malloc(BLOCKSIZE);
16:
17:     if (ptr1 != NULL)
18:         printf("\nFirst allocation of %d bytes successful.",BLOCKSIZE);
19:     else
20:     {
21:         printf("\nAttempt to allocate %d bytes failed.\n",BLOCKSIZE);
22:         exit(1);
23:     }
24:
25:     /* Try to allocate another block. */
26:
27:     ptr2 = malloc(BLOCKSIZE);
28:
29:     if (ptr2 != NULL)
30:     {
31:         /* If allocation successful, print message and exit. */
32:
33:         printf("\nSecond allocation of %d bytes successful.\n",
34:                BLOCKSIZE);
35:         exit(0);
36:     }
37:
38:     /* If not successful, free the first block and try again.*/
39:
40:     printf("\nSecond attempt to allocate %d bytes failed.",BLOCKSIZE);
41:     free(ptr1);
42:     printf("\nFreeing first block.");
43:
44:     ptr2 = malloc(BLOCKSIZE);
45:
46:     if (ptr2 != NULL)
47:         printf("\nAfter free(), allocation of %d bytes successful.\n",
48:                BLOCKSIZE);
49:     return(0);
50: }
First allocation of 30000 bytes successful.
Second allocation of 30000 bytes successful.

AANALYSIS: This program tries to dynamically allocate two blocks of memory. It uses the defined constant BLOCKSIZE to determine how much to allocate. Line 15 does the first allocation using malloc(). Lines 17 through 23 check the status of the allocation by checking to see whether the return value was equal to NULL. A message is displayed, stating the status of the allocation. If the allocation failed, the program exits. Line 27 tries to allocate a second block of memory, again checking to see whether the allocation was successful (lines 29 through 36). If the second allocation was successful, a call to exit() ends the program. If it was not successful, a message states that the attempt to allocate memory failed. The first block is then freed with free() (line 41), and a new attempt is made to allocate the second block.

You might need to modify the value of the symbolic constant BLOCKSIZE. On some systems, the value of 30000 produces the following program output:

First allocation of 30000 bytes successful.
Second attempt to allocate 30000 bytes failed.
Freeing first block.
After free(), allocation of 30000 bytes successful.

On systems with virtual memory, of course, allocation will always succeed.

 


DO free allocated memory when you're done with it.

DON'T assume that a call to malloc(), calloc(), or realloc() was successful. In other words, always check to see that the memory was indeed allocated.





Comments(3)


1. Thanks. Helped me save few hours

By: Balan at 2008-04-07 18:25:08
2. thanks bro it helped me to answer my faculty question

By: kasmin at 2010-01-08 08:11:32
3. thanks

By: nitin at 2010-03-29 01:02:57

Your name (required):


Your email(required, will not be shown to the public):


Your sites URL (optional):


Your comments:


Enter Code:
The Captcha image

Latest Tutorials

[2010-04-16]Calculator in C
[2010-04-16]Passing double value to a function in C
[2010-04-16]Passing pointer to a function in C
[2009-03-21]Infix to Prefix And Postfix in C
[2008-09-16]while, do while and for loops in C
[2008-08-13]Unicode and UTF-8 in C
[2008-08-06]Formatting with printf in C
[2008-08-06]if, if...else and switch statements in C with samples
[2008-07-31]Statements in C
[2008-07-08]Writing The First C program
[2008-07-05]The C Character Set
[2007-10-03]Using malloc() Function in C
[2007-10-03]Using calloc() Function in C
[2007-10-03]Using realloc() Function in C
[2007-10-03]Using free() Function in C

More Latest News

Most Viewed Articles (in last 30 days)
Using memset(), memcpy(), and memmove() in C
scanf and sscanf sample program in C
Using free() Function in C
Using realloc() Function in C
assert() Function Example program in C
perror() Function - example program in C
fgets(), fputs() - Line Input and Output - sample program in C
Using calloc() Function in C
The C Character Set
lseek() sample program in C
Arrays sample program in C
UNIX read and write system calls sample program in C
Binary Tree - (Self-referential Structures) example program in C
union example program in C
Infix to Prefix And Postfix in C
Most Emailed Articles (in last 30 days)
Using memset(), memcpy(), and memmove() in C
Using calloc() Function in C
Using realloc() Function in C
Using free() Function in C
Using malloc() Function in C
fgets(), fputs() - Line Input and Output - sample program in C
Using the qsort() and bsearch() functions with values - example program in C
getch and ungetch in C
The Birth and history of C Programming Language
Arrays sample program in C
assert() Function Example program in C
Binary Tree - (Self-referential Structures) example program in C
Using Shift Operators in C
perror() Function - example program in C
lseek() sample program in C