Tagged Questions

0
votes
3answers
662 views

Handling fpu exception on windows

I would like to handle fpu exception on windows, something like: #include <math.h> #include <fenv.h> #include <stdio.h> int main() { double b = 0; int raised; ...