I\'m confused a little while writing own tiny discovering program to clear up how Visual C++ allocates the memory for dynamic arrays. I must note, I have never met technical documents that describe th
I know that you have to do it like this: int * p; p = new int[10]; //use array delete [] p; Now my question is: Since it\'s not explicitly stated, how is it possible t开发者_如何学Chat the correc