fork download
  1. #include <iostream>
  2.  
  3. struct S {
  4. S() {std::cout << "hi";}
  5. };
  6.  
  7. int main() {
  8. S **s = new S *[100];
  9. }
Success #stdin #stdout 0s 3012KB
stdin
Standard input is empty
stdout
Standard output is empty