Skip to content

Instantly share code, notes, and snippets.

@isaacd9
Last active October 21, 2018 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaacd9/4239d1ede676a5af543f9430daa4b1d2 to your computer and use it in GitHub Desktop.
Save isaacd9/4239d1ede676a5af543f9430daa4b1d2 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void inc(int & num) {
++num;
}
int main() {
int x = 100;
inc(x);
printf("Got %d\n", x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment