fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Tester{
  5. Tester(){
  6. cout<<"hello, world!\n";
  7. }
  8. };
  9.  
  10. int main(){
  11. Tester array[10];
  12. }
  13.  
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
hello, world!
hello, world!
hello, world!
hello, world!
hello, world!
hello, world!
hello, world!
hello, world!
hello, world!
hello, world!