Is that true that VC++ 6.0 compilator doesn't mind if I divide something by zero, or I've missed something? The following code works:
double a;
double b;
a = 10;
b = 0;
try
{
a = a / b;
}
catch (...)
{
// some code.
}
Division by zero wasn't even catched.




Reply With Quote