fork download
  1. #include <stdio.h>
  2.  
  3. int main ()
  4. {
  5. int abc ();
  6. abc ()+1;
  7. (*abc) (3); return 0; }
  8. int abc()
  9. { printf ("come "); }
Success #stdin #stdout 0s 5300KB
stdin
Standard input is empty
stdout
come come