//Constructor. #include using namespace std; class integer { int m,n; public: /* integer(void) // special function or default constructor { m=0; n=0; cout<<"Construtor called\n"; } */ integer() { cout<<"Default Construtor called\n"; } // defautl constructor used to remove error integer(int x,int y) // special function or parametrized constructor { m=x; n=y; cout<<"Parametrized Construtor called\n"; // return m+n; constructor donnot return any value } void display(void) { cout<<"\n The value of m is :: "<