fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int f() { std::cout << "f()" << std::endl; return 1; }
  5.  
  6. int main() {
  7. int t = f(), v();
  8. cout << t << endl;
  9. return 0;
  10. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
f()
1