I have allocated and array of Objects
Objects *array = new Objects[N];
How should I delete this array? Just
delete[] array
delete [] array
is enough.