Skip to content

Instantly share code, notes, and snippets.

@FraGoTe
Created April 28, 2018 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FraGoTe/c5d5d45ad04fdb0e27db838b2e42069e to your computer and use it in GitHub Desktop.
Save FraGoTe/c5d5d45ad04fdb0e27db838b2e42069e to your computer and use it in GitHub Desktop.
#include <iostream>
using std::cout;
using std::endl;
#include <new>
class Prueba
{
public:
Prueba(int numero = 0); //constructor.
~Prueba(); //destructor
private:
int x;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment