[ create a new paste ] login | about

Link: http://codepad.org/1lm8NweW    [ raw code | output | fork ]

C++, pasted on Feb 7:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>

struct S
{
    int n;
};

class C
{
public:
    C() : s() {}
    int get() const { return s.n; }
private:
    S s;
};

int main()
{
    C c;
    std::cout << c.get();
}


Output:
1
0


Create a new paste based on this one


Comments: