fork download
  1. #include <iostream>
  2.  
  3. int hue()
  4. {
  5. return 1;
  6. }
  7.  
  8. int main()
  9. {
  10. int(*myFunc)() = hue;
  11.  
  12.  
  13. printf("OUT: %d", myFunc());
  14.  
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5276KB
stdin
45
stdout
OUT: 1