| ||||||||
Technical Support Support Resources Product Information | GENERAL: WHAT IS A FLOATING-POINT OPERATION?Information in this article applies to:
QUESTIONWhat, in plain english, is a floating-point operation and how does it work within the computer system? ANSWERIn C, an operation is the effect of an operator on an expression. Specific to floating-point numbers, a floating-point operation is any mathematical operation (such as +, -, *, /) or assignment that involves floating-point numbers (as opposed to binary integer operations). Floating-point numbers have decimal points in them. The number 2.0 is a floating-point number because it has a decimal in it. The number 2 (without a decimal point) is a binary integer. Floating-point operations involve floating-point numbers and typically take longer to execute than simple binary integer operations. For this reason, most embedded applications avoid wide-spread usage of floating-point math in favor of faster, smaller integer operations. MORE INFORMATION
SEE ALSO
Last Reviewed: Thursday, January 26, 2006 | |||||||
| ||||||||