i have the followingquestions to ask..becoase i cant find answers to them. please help.
1.Are you able to invoke the parameterized from default and vice
versa ? if yes, what is the effect on the object. Explain with
example.
2.Is it possible to for a constructor and destructor to call each
other? Write the code.
3.Are you able to differentiate the statements given below.
Class a{};void main{a x; a y=x;}
Class a{};void main{a x; a y(x);}
Class a{};void main{a x; a y; y=x;}
