4.1cBSD/usr/src/lib/c2/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;
}