Archive for oops programs and answers

You are browsing the archives of oops programs and answers.

C++ Aptitude and OOPS

1)

class Sample
{
public:
int *ptr;
Sample(int i)
{
ptr = new int(i);
}
~Sample()
[...]