I've made a Class with name Matrix. This class has two constructor, one default constructor and one copy constructor. In addition there is a public method called Determinant .In main I write :
Matrix a();
a.Determinant()
or
Matrix a();
a->Determinant()
But none of them is valid. I print the type of the a but I can't understand what type is this ?