Hi,

is it possible to deallocate memory, then use that same pointer after the delete statement

e.g

Code:
delete ptr;
ptr = 0;
Or is that pointer unavailable to use when its memory it points to is unallocated

Many Thanks
-Alex