Amadeus Interview Question

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

Interview Answers

Anonymous

Mar 10, 2015

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

1

Anonymous

Aug 30, 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.