• Source
    1. #include <stdio.h>
    2. main()
    3. {
    4. float a = 123456789.0e-5f;
    5. printf("소수점a = %6.1f 지수형a=%e\n, a, a);
    6. }