Skip to content

Instantly share code, notes, and snippets.

@rssh
Created October 9, 2013 21:15
Show Gist options
  • Save rssh/6908521 to your computer and use it in GitHub Desktop.
Save rssh/6908521 to your computer and use it in GitHub Desktop.
Example on some program in C
int n = 10;
int s = 0;
for(int x = 1; x < n; ++x) {
s+=x;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment