fork download
  1. int f();
  2.  
  3. int main(void) {
  4. int c = f();
  5. c = f(0);
  6. }
  7.  
  8. int f(int a, int b) {
  9. return a + b;
  10. }
Success #stdin #stdout 0s 9288KB
stdin
Standard input is empty
stdout
Standard output is empty