Why can't you access the size of a new[]'d array?
- by Poita_
When you allocate an array using new [], why can't you find out the size of that array from the pointer? It must be known at run time, otherwise delete [] wouldn't know how much memory to free...
Unless I'm missing something?