Amadeus interview question

obj * arr = new obj[10]; delete arr;

Interview Answers

Anonymous

10 Mar 2015

This ends up with segmentation fault on linux + gcc, which wasnt in the given choices.

1

Anonymous

30 Aug 2016

And if it doesn't, it only calls the destructor of the first object in the array. In any case, it is UB (undefined behavior), so it can do anything the compiler decides to.