fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void) {
  5. int i;
  6. srand(100);
  7. for (i=0; i<5; i++)
  8. {
  9. printf("%d ", rand() % 80);
  10. }
  11. return 0;
  12. }
Success #stdin #stdout 0s 5600KB
stdin
Standard input is empty
stdout
40 21 39 44 16