Skip to content

Instantly share code, notes, and snippets.

@jdumont0201
Created May 5, 2018 07:54
Show Gist options
  • Save jdumont0201/e9f19055d10457e4e1eb84c219380e51 to your computer and use it in GitHub Desktop.
Save jdumont0201/e9f19055d10457e4e1eb84c219380e51 to your computer and use it in GitHub Desktop.
class A{
int d_val;
public:
A(int val){
d_val=val;
}
};
int main(){
A a=A(5);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment