fork download
  1. #include<iostream>
  2.  
  3. using namespace std;
  4. int main()
  5. {
  6. int*** root=new int**[100];
  7. for(int i=0;i<100;i++)
  8. root[i]=new int*[100];
  9. cout<<"Ok";
  10. return 0;
  11. }
Success #stdin #stdout 0s 2984KB
stdin
Standard input is empty
stdout
Ok