Created
August 6, 2012 19:47
-
-
Save akaptur/3277921 to your computer and use it in GitHub Desktop.
simple C loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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