Mail Archives: djgpp-workers/2003/09/09/12:00:24
--part1_a.354a4585.2c8f52cf_boundary
Content-Type: text/plain; charset="US-ASCII"
Content-Transfer-Encoding: 7bit
Esa Peuha, student of mathematics at the University of Helsinki:
Nice going, as the examples below show:
#include <stdio.h>
int
main(void)
{
long double Demo = (unsigned long long)(-1);
printf("Demo = %.0Lf\n", Demo);
printf("Demo - 1 = %.0Lf\n", Demo-1.0L);
printf("Demo - 2 = %.0Lf\n", Demo-2.0L);
exit(0);
}
Current _doprnt.o:
Demo = 18446744073709551615
Demo - 1 = 18446744073709551613
Demo - 2 = 18446744073709551613
Improved _doprnt.o:
Demo = 18446744073709551615
Demo - 1 = 18446744073709551614
Demo - 2 = 18446744073709551613
KB Williams
--part1_a.354a4585.2c8f52cf_boundary
Content-Type: text/html; charset="US-ASCII"
Content-Transfer-Encoding: quoted-printable
<HTML><FONT FACE=3Darial,helvetica><FONT SIZE=3D3 FAMILY=3D"SERIF" FACE=3D"=
Georgia" LANG=3D"0">Esa Peuha, student of mathematics at the University of H=
elsinki:<BR>
<BR>
Nice going, as the examples below show:<BR>
<BR>
<BR>
#include <stdio.h><BR>
int<BR>
main(void)<BR>
{<BR>
long double Demo =3D (unsigned long lon=
g)(-1);<BR>
<BR>
printf("Demo =3D %.0Lf\n", Demo);=
<BR>
printf("Demo - 1 =3D %.0Lf\n", Demo-1.0L);<BR>
printf("Demo - 2 =3D %.0Lf\n", Demo-2.0L);<BR>
exit(0);<BR>
}<BR>
<BR>
<BR>
<BR>
Current _doprnt.o:<BR>
<BR>
Demo =3D 18446744073709551615<BR>
Demo - 1 =3D 18446744073709551613<BR>
Demo - 2 =3D 18446744073709551613<BR>
<BR>
Improved _doprnt.o:<BR>
<BR>
Demo =3D 18446744073709551615<BR>
Demo - 1 =3D 18446744073709551614<BR>
Demo - 2 =3D 18446744073709551613<BR>
<BR>
<BR>
KB Williams</FONT></HTML>
--part1_a.354a4585.2c8f52cf_boundary--
- Raw text -