fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int a[10000000]={0};
  5.  
  6. int main()
  7. {
  8. int i = 0;
  9. while(i < 10000000)
  10. {
  11. a[i] = rand()%100000+1;
  12. i++;
  13. }
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.33s 41352KB
stdin
Standard input is empty
stdout
Standard output is empty