Destructor is defined as _______
Const matrix X(m, n);
matrix:: ~matrix(){ }
matrix:: matrix(void)
matrix()
Answer and 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.
