Archive for oops programs and answers
You are browsing the archives of oops programs and answers.
You are browsing the archives of oops programs and answers.
1)
class Sample
{
public:
int *ptr;
Sample(int i)
{
ptr = new int(i);
}
~Sample()
[...]