fork download
  1.  
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <time.h>
  5.  
  6. int main()
  7. {
  8. time_t t = time(NULL);
  9.  
  10. srand(t);
  11.  
  12. int r_1 = rand();
  13. int r_2 = rand();
  14.  
  15. printf("%d, %d, %d, %d, %d\n", r_1, r_2, rand(), rand(), rand());
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
369005499, 1412163672, 135715138, 1774858945, 1704145084