C++/디딤돌 C++

reinterpret_cast [디딤돌 C++]

언제나휴일 2016. 4. 17. 00:49
반응형

reinterpret_cast

//reinterpret_cast

#include <iostream>

#include <iomanip>

#include <string>

 

using namespace std;

 

int main()

{

   

    float f=-12.625;

    float *pf = &f;

    int *a;

 

    a = reinterpret_cast<int *>(pf);

    cout<<hex<<(*a)<<endl;

    return 0;

}

* 디딤돌 C++  38. 형변환에서

디딤돌 C++  소개 바로가기

반응형