Last active
January 17, 2017 02:46
-
-
Save AndyNovo/46ee06587bb2fea3f00166ea61f1a330 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#include "stdio.h" | |
#include "stdlib.h" | |
int main(void) { | |
unsigned int seed = 123; | |
srand(seed); | |
int i=0; | |
for(; i < 5; i++){ | |
printf(" %u ", rand()); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment