fork download
  1. #include <sys/random.h>
  2.  
  3. int main() {
  4. unsigned int tmp;
  5. printf("%d\n", tmp);
  6. getrandom(&tmp, sizeof(tmp), GRND_NONBLOCK);
  7. printf("%d", tmp);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
32765
-478069334