fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3. void Function1();
  4. void Function1() {
  5. }
  6.  
  7. int main() {
  8. void*a = (void*)&Function1;
  9. cout<<a<<endl;
  10. cout<< (void*)&Function1<<endl;
  11. cout<< (void*)&main<<endl;
  12. return 0;
  13. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
0x8048710
0x8048710
0x8048570