Paul Gloudemans (floyd!prg) found this problem in VAX cc on both 4.1bsd
and BTL 4.0.
-----
/* bug.c */
main()
{
float z;
int n;
n=2;
z=3.5;
n *= z;
printf("n=%d, should be 7!\n");
}
% cc bug.c
% a.out
n=6, should be 7!
%
-----
Andy Tannenbaum Bell Labs Whippany, NJ (201) 386-6491