fork download
  1. // Prototypes
  2. void foo(void);
  3.  
  4. int main(){
  5. printf("one\n");
  6. foo();
  7. return 0;
  8. }
  9.  
  10. void foo(){
  11. printf("two\n");
  12. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
one
two