Skip to content

Instantly share code, notes, and snippets.

View shubham7298's full-sized avatar
:octocat:
On a coding spree

Shubham Singh shubham7298

:octocat:
On a coding spree
View GitHub Profile
@shubham7298
shubham7298 / singleton.cpp
Last active January 18, 2019 16:51
Attempt to make singleton class in C++
#include<iostream>
using namespace std;
class Singleton
{
private:
static Singleton obj;
Singleton(){
cout<<"Constructor does not get called";
}