how is __float128 is defined by gcc. what is the typedef. 128but numbers can be represented in different ways like, double double, char float128[16], or int float128[4]
How is __float128 defined?
how is __float128 is defined by gcc. what is the typedef. 128but numbers can be represented in different ways like, double double, char float128[16], or int float128[4]
How is __float128 defined?
long double
does not have a standardized format, in various implementations it could be a synonym to double
, or 80-bit Intel format or quadruple-precision IEEE floating point format
or something else.
It GCC, __float128
is IEEE binary128
on the amd64 and hp-pa.