how to dynamically allocate memory for pointer type

Hi!

Is it possible to dynamically allocate memory for POINTER type? If its possible, how?
sure, just like with any other type:
1
2
void* * mypointer;
mypointer=new void*;
Last edited on
thanks man!
Topic archived. No new replies allowed.