vote up 1 vote down star

Hi people!

I wrote some code in C (not in C++):

Mask1 = abs(Area1 * 2 + Area2 * -2);

Area1, Area2 and Mask1 are three double variables. (e.g. 3.00556, 34.3333) My problem is that abs returns an integer value (e.g 30).

What I need to do to fix it?

Regards.

flag

5 Answers

vote up 10 vote down check

Use fabs

link|flag
Note that this is because C doesn't support method overloading, for those coming from "other" languages. – Andrew Coleson Jun 11 at 17:03
In fact, C doesn't even have methods. It only has functions. ;) – Dima Jun 11 at 19:35
vote up 0 vote down

use fabs()

link|flag
vote up 3 vote down

abs() takes an integer as an argument and returns an integer result. Your doubles are being automatically truncated to integers. A decent C++ compiler would give you a warning. ;)

The function to use here is fabs() for doubles or fabsf() for floats.

link|flag
vote up 3 vote down

fabs http://www.manpagez.com/man/3/fabs/

link|flag
vote up 1 vote down

Use fabs()

link|flag

Your Answer

Get an OpenID
or

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