Skip to content

Instantly share code, notes, and snippets.

@kejadlen
Created July 28, 2012 02:13
Show Gist options
  • Save kejadlen/3191450 to your computer and use it in GitHub Desktop.
Save kejadlen/3191450 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
int x = 10;
while( x --> 0 ) // x goes to 0
{
printf("%d ", x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment