Skip to content

Instantly share code, notes, and snippets.

@kasramp

kasramp/test.cpp Secret

Created August 1, 2020 23:37
Show Gist options
  • Save kasramp/60068b26e90ab4085ad6435c91702bfa to your computer and use it in GitHub Desktop.
Save kasramp/60068b26e90ab4085ad6435c91702bfa to your computer and use it in GitHub Desktop.
void test() {
int a = 5;
decrement(a);
cout << a << endl; // prints 4;
}
//////////////////////////////////
// pointer example
void decrement(int *x) {
x--;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment