fork download
  1. #include <iostream>
  2.  
  3. int main() {
  4. int f();
  5. std::cout << f() << std::endl;
  6. return 0;
  7. }
  8.  
  9. int f() {
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 2680KB
stdin
Standard input is empty
stdout
0