fork(2) download
  1.  
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4. #include<time.h>
  5. int main()
  6. {
  7. int i;
  8. srand(time(NULL));
  9. for(i=0; i<6; i++){
  10. printf("%d ", rand() % 6 + 1);
  11. }
  12. return 0;
  13. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
1 6 5 6 4 4