fork download
  1. #include <iostream>
  2. #include <cstring>
  3. using namespace std;
  4.  
  5. int arr[10000000];
  6.  
  7. int main() {
  8. // your code goes here
  9. memset(arr,0,sizeof(arr));
  10. return 0;
  11. }
Success #stdin #stdout 0.03s 42400KB
stdin
Standard input is empty
stdout
Standard output is empty