fork download
  1. #include <stdio.h>
  2.  
  3. #include <stdlib.h>
  4. #include <iostream>
  5.  
  6. using namespace std;
  7.  
  8.  
  9.  
  10.  
  11. int main()
  12. {
  13. int x;
  14. void *a=&x;
  15. cout << "\n"<<&x<<" "<<a<<endl;
  16.  
  17. return 0;
  18. }
  19.  
  20.  
  21.  
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
0xbffbe61c 0xbffbe61c