Submitted by Mi-K on Wednesday, February 2, 2011 - 11:18am
The xvf command of the tar tool allows to extract files from a file with the .tgz extension, in the current folder. Let's see an example of the xvf command:
Submitted by Mi-K on Tuesday, January 25, 2011 - 1:52pm
The free() function is the sister of the malloc() function. As malloc() returns the address of the first byte of the allocated memory, free() accepts, as only parameter, the address of this first byte.