If I allocated a memory location for an int object dynamically as follows:
int *x = new int;
After done with it, and want to free the memory on the heap, I will do the following:
delete x;
Now, if I did not do the following:
x = NULL;
Will x be pointing to another address? UPDATE: another instead of many
Say I didn't do x = NULL and made another delete x;, what will happen?
Thanks.