H
Hai Ly Hoang
Hi,
int *(*arr)[5];
a is a pointer to an element (e1). e1 is an array of 5 integer pointer.
Now i want to to allocate for arr. How to do that ?
int *(**arr2)[3];
and arr2 = new (????).
arr2 is now an array of pointer p1. Each pointer p1 point to an object e.
Each e1 is an array of pointers which type is integer pointer. Is it true ?
What is the syntax of "new " operator ?
Thanks alot !
int *(*arr)[5];
a is a pointer to an element (e1). e1 is an array of 5 integer pointer.
Now i want to to allocate for arr. How to do that ?
int *(**arr2)[3];
and arr2 = new (????).
arr2 is now an array of pointer p1. Each pointer p1 point to an object e.
Each e1 is an array of pointers which type is integer pointer. Is it true ?
What is the syntax of "new " operator ?
Thanks alot !