

InterviewSolution
Saved Bookmarks
1. |
What is meant by a floating constant in C++ |
Answer» "floating-point constant" is a decimal number that represents a signed real number. The REPRESENTATION of a signed real number INCLUDES an integer portion, a FRACTIONAL portion, and an exponent. Use floating-point CONSTANTS to represent floating-point values that can't be changed. |
|