fork download
  1. #include <iostream>
  2. using namespace std;
  3. int& foo(int x){
  4. return x;
  5. }
  6. int main() {
  7. // your code goes her
  8. return foo(0);
  9. }
Runtime error #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Standard output is empty