Skip to content

Instantly share code, notes, and snippets.

@KristianLyng
Created March 14, 2013 14:05
Show Gist options
  • Select an option

  • Save KristianLyng/5161588 to your computer and use it in GitHub Desktop.

Select an option

Save KristianLyng/5161588 to your computer and use it in GitHub Desktop.
kristian@edwin:~$ cat foo2.c; gcc foo2.c; ./a.out
#include <stdio.h>
int main(void) {
int i = 10;
while (i --> 0)
printf("%d ", i);
putchar('\n');
}
9 8 7 6 5 4 3 2 1 0
kristian@edwin:~$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment