F
Fringe
I'm using Mingw 3.2 (Windows version of GCC) which supposedly supports 10bit
floating point numbers using Long Double. However, Long Doubles don't print
correctly even in a simple program like the following:
int main()
{
long double P = 1.123456789012345678901234L;
printf("%Lf\n", P);
system("PAUSE");
return 0;
}
Output: -0.000000
Do I need to write my own library functions in order to do operations on
Long Doubles in Mingw? Thanks
floating point numbers using Long Double. However, Long Doubles don't print
correctly even in a simple program like the following:
int main()
{
long double P = 1.123456789012345678901234L;
printf("%Lf\n", P);
system("PAUSE");
return 0;
}
Output: -0.000000
Do I need to write my own library functions in order to do operations on
Long Doubles in Mingw? Thanks