I use new to allocate a buffer, as follows:

BYTE *p;

p = new BYTE[20];


If I do NOT store the size of the allocated buffer, how to determine the buffer size via p only?

Thanks