fork download
  1. #include <iostream>
  2.  
  3. int f();
  4.  
  5. int main()
  6. {
  7. int (*funktionszeiger)() = &f;
  8. std::cout << &funktionszeiger << '\n' << funktionszeiger << '\n';
  9. }
  10.  
  11. int f(){}
Success #stdin #stdout 0.02s 2724KB
stdin
Standard input is empty
stdout
0xbfac962c
1