dynamic arrays and pointers c++ code example
Example 1: c++ delete dynamically allocated array
int length = 69;
int * numbers = new int[length];
delete[] numbers;
Example 2: c++ allocate dynamic with initial values
int length = 50;
int *array = new int[length]();
// returns 50 length array of 0