Created
November 5, 2017 13:18
-
-
Save olastor/cba837a4889da2a81b7bf7b1dac1bacc 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 <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