InterviewSolution
Saved Bookmarks
| 1. |
The data type double is another floating-point type. Then why is it treated as a distinct data type? |
|
Answer» The data type double is treated as a distinct data type because it occupies twice as much memory as type float, and stores floating-point numbers with much larger range and precision. It stands for double precision floating-point. It is used when type float is too small or insufficiently precise. |
|