Interview Questions

How can I handle floating-point exceptions gracefully?

C Interview Questions and Answers


(Continued from previous question...)

How can I handle floating-point exceptions gracefully?

On many systems, you can define a function matherr which will be called when there are certain floating-point errors, such as errors in the math routines in <math.h>. You may also be able to use signal to catch SIGFPE

(Continued on next question...)

Other Interview Questions