[ create a new paste ] login | about

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

C++, pasted on Apr 29:
class SomeClass

{

public:

SomeClass()

{

x1 = new char[ 1024 ];

x2 = new char[ 1024 * 1024 ];

}

private:

char *x1;

char *x2;

};


Output:
1
2
In function `_start':
undefined reference to `main'


Create a new paste based on this one


Comments: