103. Destructors-I

Question.3

Three objects are created in sequence:

void func() {
   Lock a;   // Created 1st
   Lock b;   // Created 2nd
   Lock c;   // Created 3rd
}

In what order are they destroyed?

Need Help? Refer to the Quick Guide below

Select Answer