fork(1) download
  1. auto f(){
  2. struct Foo{
  3. int i = 0;
  4. } foo;
  5. return foo;
  6. }
  7.  
  8. int main() {
  9. return f().i;
  10. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
Standard output is empty