#include

int main(void)

{

float a = 0.75;

unsigned int *pA = (unsigned int*)&a;

printf("%f\nx\n", a, *pA);

}


*pA = 3f400000 인데 왜 이렇게 나오는거야???