N
Noah Roberts
The length of the allocated array must be stored somewhere
by new so that delete[] knows how many destructors to call.
But theres no standard way to get this length.
That is not completely correct. You can override the new operator to
use an allocator that will provide you with that information. This
would all indeed be quite within the standard. It is also, of course,
why there can never be a *generic* method of accessing this
information.