Hi,

How do i find at run-time the size of a dynamic memory allocation, which is an array:

Code:
double **imageBuffer = NULL;
imageBuffer = new double* [30]
I need a way to find the size of this array as I wont know the value in the [].

Many Thanks
Alex