Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Wednesday, March 11, 2015

What is free function ?

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