Skip to content

Instantly share code, notes, and snippets.

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