I have allocated and array of Objects
Objects *array = new Objects[N];
How should I delete this array? Just
delete[] array
Just delete[] array is sufficient. It is guaranteed that each element of the array is deleted when you delete an array using delete[] operator.
delete[]