previous
|
index
|
next
Creating and Accessing Dynamic Arrays
Note that we could use a type definition like:
typedef int*
intArray
;
then use:
intArray
v = new int[n];
previous
|
index
|
next