소스 코드 /* http://ehpub.co.kr 언제나 C언어 실수 형식 표현 범위 */ #include //표준 입출력 헤더 #include typedef union { float value; struct { unsigned mantissa : 23; unsigned exponent : 8; unsigned sign : 1; }sv; }Test; int main(void) { Test test = { 0 }; test.sv.exponent = 1; test.sv.mantissa = 1; printf("%.50f\n", test.value); printf("%.50f\n", FLT_MIN); test.sv.exponent = 0; printf("%.50f\n", test.value); printf("%..