Loading practice questions
Destructor is defined as _______
(B) matrix:: ~matrix(){ }
Explanation:
A destructor is used to destroy the objects that have been created by a constructor. Like a constructor, the destructor is a member function whose name is same as the class name but is preceded by a tilde.