c++ delete dynamically allocated array

C++
int length = 69;
int * numbers = new int[length];
delete[] numbers;
Source

Also in C++: