नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
stack underflow
Remarks
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.
Example
For example, the following generates this error when compiled and run:
long double ld() {}
int main ()
{
ld();
}
Program terminates with exit code 139.