fork(2) download
  1. #include <stdio.h>
  2.  
  3. inline void foo() { printf("foo\n"); }
  4.  
  5. int main(void) {
  6. void (*f)() = &foo;
  7. f();
  8. // your code goes here
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
foo