fork download
  1. #include <stdio.h>
  2.  
  3. void dummy() {
  4. printf("hello world\n");
  5. }
  6.  
  7. void (*(func()))() {
  8. return dummy;
  9. }
  10.  
  11. int main() {
  12. void (*(*f)())() = func;
  13. f()();
  14. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
hello world