fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int sq(int x) { return x*x; }
  6.  
  7. int main(int argc, const char * argv[])
  8. {
  9. cout << (*****************************************sq)(2) << endl;
  10. }
  11.  
Success #stdin #stdout 0s 4256KB
stdin
Standard input is empty
stdout
4