The free() function is used to deallocate the memory space
that allocated in the program by using memory allocation functions such as
calloc() or malloc(). It release the unnecessary memory space that no larger
used in program.
sy:
free( pointer_variable );
ex:
free ( ptr );
No comments:
Post a Comment