[ create a new paste ] login | about

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

C++, pasted on Oct 13:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>
using namespace std;

class Object{
     public:
        int i;
        Object(int x);
};

Object::Object(int x){
     i = x;
}

int main(){
    Object *pointer;
    pointer = new Object(23);
    cout << "pointer->i = " << pointer->i;
}


Output:
1
pointer->i = 23


Create a new paste based on this one


Comments: