Hi, do not know how possible is this but here it goes, i'm trying to declare an array once a program is running. This is how i'm thinking:
[LIST=1]
[*]int size;
[*]cout << "Enter size of array: ";
[*]cin >> size;
[*]Holding *holdLib[size]; //this is a base class pointer array
[/LIST]
i've tried declaring a const int with the value of size to the pass the const int into the array....any thoughts???.....