Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 6 Nov 1995 09:49:35 -0500 (EST)
From:      "Ron G. Minnich" <rminnich@Sarnoff.COM>
To:        Jerry Kendall <Jerry.Kendall@vmicls.com>
Cc:        freebsd-hackers@freebsd.org
Subject:   Re: Pentium BUG
Message-ID:  <Pine.SUN.3.91.951106094844.3348B-100000@terra>
In-Reply-To: <9511061410.AA16785.gonzo@vmicls.com>

next in thread | previous in thread | raw e-mail | index | archive | help
#include <stdio.h>

double C;

main()
{
  float i = 24;
  double D = 1.0;
  C =  824633702449.0;
/*
  C =  824633702457.0;
 */
        printf("%.70f\n",C);
        printf("%.70f\n",(C)/(C));
        printf("%.70f\n",1.0/(1.0/C));
        printf("%.70f\n",(1.0/C)*C);
        printf("i %f i/1.5 %f \n", i, i/1.5);
}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.SUN.3.91.951106094844.3348B-100000>