I have following static declaration of memory:
void* array[5000];
How I can allocate the same memory using operator new in C++?
operator new
void **array = new void*[5000];