Skip to content

Instantly share code, notes, and snippets.

@olastor
Created November 5, 2017 13:18
Show Gist options
  • Save olastor/cba837a4889da2a81b7bf7b1dac1bacc to your computer and use it in GitHub Desktop.
Save olastor/cba837a4889da2a81b7bf7b1dac1bacc to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <time.h>
#include <stdlib.h>
int main() {
// salt rnd
srand(time(NULL));
printf("%d\n", rand());
printf("%d\n", rand());
printf("%d\n", rand());
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment