Syntax:
delete p;
delete[] pArray;
The delete operator frees the memory pointed to by p. The argument should have
been previously allocated by a call to new. The second form of delete should be
used to delete an array.
Related Topics: free, malloc, new