let say,
i have a House object;
House* someHouses = new House[100];
-----fucntion call... may or may not add stuff to someHouses ------
now, i want to get to the last position that haven't used yet. i tried to check NULL, and 0, both doesn't work. how can i check that?
between i can't use anything, for example vector, in STL library.
thanks in advance!