fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. float test = 69.420;
  7. cout<<test<<endl;
  8. float* ptr2test = &test;
  9. cout<<ptr2test<<endl;
  10. int* ptr2int = (int*)ptr2test;
  11. cout<<ptr2int<<endl;
  12. int wynikTestu = *ptr2int;
  13. cout<<wynikTestu<<endl;
  14. }
Success #stdin #stdout 0.01s 5472KB
stdin
Standard input is empty
stdout
69.42
0x7fff792a9f84
0x7fff792a9f84
1116395274