fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void func();
  5. void foo(void()) {cout << __PRETTY_FUNCTION__;}
  6.  
  7. int main() {
  8. foo(func);
  9. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
void foo(void (*)())