Skip to content

Instantly share code, notes, and snippets.

View petrbel's full-sized avatar

Petr Bělohlávek petrbel

View GitHub Profile
@petrbel
petrbel / array_new[].cpp
Last active January 2, 2016 13:58
c++ examples (exam 2014)
#include <iostream>
using namespace std;
class Base
{
public:
Base () { cout << "Base::Base" << endl; };
};
int main (int argc, char ** argv)