[ create a new paste ] login | about

Link: http://codepad.org/KG6mlA7i    [ raw code | fork ]

C++, pasted on Sep 12:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Myclass
{
    int i;
    public:
       Myclass(){}
       Myclass(Myclass const &obj3)
       { 
            //Note i is private member
            this->i = obj3.i;
       }
};

int main()
{
    Myclass obj;
    Myclass obj2(obj);
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: