I have an array defined as;
static double Temp_data[TABLE_SIZE];
I want to change the size of the array according to the user input.
T *pData
pData = new T[NUM_ELEMENTS];
Basically using the new operator. Read more about new from any C++ reference