vote up 4 vote down star
2

I'm getting the slope of a line bounded by two points

float slopeXY(CGPoint p1, CGPoint p2)
{
    return ((p2.y - p1.y) / (p2.x - p1.x));
}

If I give it a zero-sized line,

CGPoint p1 = CGPointMake(0, 10);
CGPoint p2 = CGPointMake(0, 10);

float sxy = slopeXY(p1, p2);

I don't get a divide by zero error.

flag

7  
you seem to have found a way to divide by zero. Use this carefully, or you may rip a hole in space-time and our world will be swallowed up by infinity. – Carson Myers Sep 19 at 18:09

4 Answers

vote up 16 vote down check

With the default floating-point environment on OS X, floating-point division by zero does not cause a trap or exception. 0.0/0.0 will instead return a NaN and raise the invalid floating-point status flag in the fpscr. Dividing a non-zero value by 0.0 will return an infinity and raise the divide-by-zero flag.

You can check for these conditions, if you need to, using the isnan( ) and isinf( ) functions defined in math.h

link|flag
vote up 2 vote down

Divide by zero error only happens for integer division. For float, normally you get infinity, unless the dividend is zero.

link|flag
vote up 2 vote down

Because it's Undefined Behavior. Your program is allowed to behave in any way, which may include crashing or showing us the last glimpse of the universe you so inconsiderately destroyed by dividing-by-zero.

From the C[99] Standard, §6.5.5.5:

The result of the / operator is the quotient from the division of the first operand by the second; the result of the % operator is the remainder. In both operations, if the value of the second operand is zero, the behavior is undefined.

link|flag
1  
The behavior is not undefined, because the OS X compilers conform to Annex F of the same standard. Section F.3.1 of C[99] says "the +, −, *, and / operators provide the IEC 60559 add, subtract, multiply, and divide operations," and IEC60559/IEEE-754 specifies the result of division by zero. – Stephen Canon Sep 20 at 17:36
Oh. Is that just for floats, then? – aib Sep 22 at 7:02
vote up 1 vote down

Floating-point errors typically do not raise an exception.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.