Skip to content

Instantly share code, notes, and snippets.

@dvt32
Created November 26, 2016 17:18
Show Gist options
  • Save dvt32/bc1c2becf55dbab54f319a95cf380cd2 to your computer and use it in GitHub Desktop.
Save dvt32/bc1c2becf55dbab54f319a95cf380cd2 to your computer and use it in GitHub Desktop.
CODETIPS #5 - Example 2
int main() {
int a = 1;
int b = 2;
int c = 3;
a = a + 1;
b = b + 1;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment