(* * Copyright (c) 1980 The Regents of the University of California. * All rights reserved. * * %sccs.include.redist.c% * * @(#)fpe.p 5.1 (Berkeley) 04/16/91 *) { test of floating point exception handling } program fpe(input, output); var x, y : real; begin x := 1; y := 0; writeln(x/y); end.