4.4BSD/usr/src/old/pcc/c2.vax/Test.d/testfloat.c

Compare this file to the similar file:
Show the results in this format:

float f;
double d;
main(){
	float	flocal;
	double	dlocal;

	flocal = f * f;
	flocal = f + (f - f);
	flocal = f / f;

	dlocal = d * d;
	dlocal = d + (d - d);
	dlocal = d / d;
}