Skip to content

Instantly share code, notes, and snippets.

@AndyNovo
Last active January 17, 2017 02:46
Show Gist options
  • Save AndyNovo/46ee06587bb2fea3f00166ea61f1a330 to your computer and use it in GitHub Desktop.
Save AndyNovo/46ee06587bb2fea3f00166ea61f1a330 to your computer and use it in GitHub Desktop.
#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