Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
stack underflow
A floating-point operation resulted in a stack underflow on the 8087/287/387 coprocessor or the emulator.
This error is often caused by a call to a long double
function that does not return a value. For example, the following generates this error when compiled and run:
long double ld() {};
main ()
{
ld();
}
Program terminates with exit code 139.