Advertisement
Guest User

Untitled

a guest
May 20th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <time.h>
  3. #include <stdlib.h>
  4. #include <sys/random.h>
  5.  
  6. int main(void){
  7. char buf[100];
  8. getrandom(buf, 100,GRND_RANDOM);
  9. printf("%s\n", buf);
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement