fork(2) download
  1. #include <stdio.h>
  2.  
  3. struct foo
  4. {
  5. int a, b;
  6. };
  7.  
  8. struct foo foo()
  9. {
  10. struct foo a;
  11. return a;
  12. }
  13.  
  14. int main(void) {
  15. foo();
  16.  
  17. // your code goes here
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty