Skip to content

Instantly share code, notes, and snippets.

@akaptur
Created August 6, 2012 19:47
Show Gist options
  • Save akaptur/3277921 to your computer and use it in GitHub Desktop.
Save akaptur/3277921 to your computer and use it in GitHub Desktop.
simple C loop
for (int i=0; i<15; i++)
{
int c = rand();
printf("%d\n", c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment