fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4.  
  5. int main()
  6. {
  7. int i=0,a;
  8.  
  9. srand( time(0));
  10.  
  11. while( i<19 )
  12. {
  13. a = rand();
  14. printf("%d\n",a);
  15.  
  16. i = i+1;
  17. }
  18. return 0;
  19. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
49133341
2046093270
589525892
216620149
1560501454
714515381
91420667
560684196
1655226774
1576663695
1989347234
2142701235
771120347
134688553
1307774522
441226070
653582285
2020095369
1622473323