Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Why does modulus division (%) only work with integers?

This code doesn't work in C and C++ but works in C# and Java:

float x = 3.4f % 1.1f;
double x = 3.4 % 1.1;

Also, division remainder is defined for reals in Python.

What is the reason this operation is not defined for floats and doubles in C and C++?

share|improve this question

marked as duplicate by AndreyT, Luchian Grigore, KingsIndian, Alexei Levenkov, Mysticial Jul 14 '12 at 20:32

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 19 down vote accepted

The C committee explained its position of why there is no remainder operator for floating types in the Rationale document:

(6.5.5 Multiplicative operators) The C89 Committee rejected extending the % operator to work on floating types as such usage would duplicate the facility provided by fmod (see ยง7.12.10.1).

share|improve this answer
Any insight as to why they made that decision? – Remiel Oct 11 '12 at 18:33
@Remiel because as such usage would duplicate the facility provided by fmod – ouah Oct 12 '12 at 10:28
1  
Yes, I read the answer. Let me rephrase my question: as a matter of language design, why would it be undesirable to integrate the facility of fmod into the core language? – Remiel Oct 12 '12 at 12:44

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