fork download
  1. #include <iostream>
  2.  
  3.  
  4. extern int foo;
  5. extern int foo;
  6. extern int foo;
  7. extern int foo;
  8. extern int foo;
  9.  
  10. int main()
  11. {
  12. std::cout << foo << '\n';
  13. }
  14.  
  15. int foo = 77;
Success #stdin #stdout 0s 2928KB
stdin
Standard input is empty
stdout
77