Destructors in C++
Program 1 // Destructor in C++ #include<iostream> #include<conio.h> using namespace std; class Test { int a,b; public: Test(int a,int b) //constructor { this->a=a; this->b=b; cout<<“\nI am constructor\n”; } void maxData() { if(a>b) cout<<“\nFirst no...

