Skip to content

Instantly share code, notes, and snippets.

@kasramp

kasramp/test.cpp Secret

Created August 1, 2020 23:35
Show Gist options
  • Save kasramp/2db2922c8b91f69d910ef746baf1f099 to your computer and use it in GitHub Desktop.
Save kasramp/2db2922c8b91f69d910ef746baf1f099 to your computer and use it in GitHub Desktop.
void test() {
int x;
int& rx=x; // makes reference to x
rx++; // increases the value of x
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment