fork download
  1. #include <iostream>
  2. #include <functional>
  3. using namespace std;
  4.  
  5. void foo( int x ) { cout << x << endl; }
  6.  
  7. int main()
  8. {
  9. auto x = std::bind(foo, 5);
  10. x();
  11. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
5