class Test{
private:
int n;
public:
Test(){
cout<<<"object created.."<<endl;
}
~Test(){
cout<<<"Object destroyed.."<<endl;
}
};
void main(){
clrscr();
Test a, b;
getch();
}
}
private:
int n;
public:
Test(){
cout<<<"object created.."<<endl;
}
~Test(){
cout<<<"Object destroyed.."<<endl;
}
};
void main(){
clrscr();
Test a, b;
getch();
}
}
No comments:
Post a Comment