fork(1) download
  1. #include <stdlib.h> /* srand, rand */
  2. #include <time.h> /* time */
  3. #include <iostream>
  4. using namespace std;
  5.  
  6.  
  7.  
  8. int main ()
  9. {
  10. srand(time(NULL));
  11. for (int i = 0 ; i< 10 ; i++) {
  12. cout << rand() << " ";
  13. }
  14. cout << rand();
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
2133349703 1224137931 955459329 692667387 481015798 2117874616 1139140376 102154339 932138766 1287420039 2018517191