IEEE754 fp

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ravishankar S

    IEEE754 fp

    Hello C-Experts,

    Is there any predefined constant in Std C which specifed that the
    implementation uses the IEEE754
    standard for floating point operation ?

    Regards,
    Ravishankar




  • Army1987

    #2
    Re: IEEE754 fp

    Ravishankar S wrote:
    Hello C-Experts,
    >
    Is there any predefined constant in Std C which specifed that the
    implementation uses the IEEE754
    standard for floating point operation ?
    __STDC_IEC_559_ _
    But note that there are many implementations which partially conform to
    the Annex F, and do not define __STDC_IEC_559_ _, even if, for example,
    floating point numbers are stored with the IEEE754 representation.


    --
    Army1987 (Replace "NOSPAM" with "email")

    Comment

    Working...