Skip to content

Instantly share code, notes, and snippets.

@Yago
Created January 29, 2014 09:41
Show Gist options
  • Save Yago/39e8868225b15a54a932 to your computer and use it in GitHub Desktop.
Save Yago/39e8868225b15a54a932 to your computer and use it in GitHub Desktop.
C - Raccourcis
variable++; // + 1
variable--; // -1
variable *= 2; // * 2
variable -= 4; // - 4
variable /= 4; // / 4
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment