Defined in header <<fenv.h>> int feholdexcept( fenv_t* envp ); (since C99)
First, saves the current floating-point environment to the object pointed to by envp (similar to fegetenv), then clears all floating-point status flags, and then installs the non-stop mode: future floating-point exceptions will not interrupt execution (will not trap), until the floating-point environment is restored by feupdateenv or fesetenv.
This function may be used in the beginning of a sub