Monday, January 6, 2020

What Is a Double in C, C++ and C# Programming

The double is a fundamental data type built into the compiler and used to define numeric variables holding numbers with decimal points. C, C,  C# and many other programming languages recognize the double as a type. A double type can represent fractional as well as whole values. It can contain up to 15 digits in  total, including those before and after the decimal point.   Uses for Double The float type, which has a smaller range, was used at one time because it was faster than the double when dealing with thousands or millions of floating-point numbers. Because calculation speed has increased dramatically with new processors, however, the advantages of floats over doubles are negligible. Many programmers consider the double type to be the default when working with numbers that require decimal points.   Double vs. Float and Int Other data types include  float  and  int. The double and float types are similar, but they differ in precision and range: A float is a single precision, 32-bit floating-point data type that accommodates seven digits. Its range is approximately  1.5 Ãâ€" 10−45  to 3.4 Ãâ€" 1038.A double is a double-precision, 64-bit floating-point data type. It accommodates 15 to 16 digits, with a range of  approximately  5.0  Ãƒâ€"  10−345  to 1.7  Ãƒâ€"  10308. The int also deals with data, but it serves a different purpose. Numbers without fractional parts or any need for a decimal point can be used  as  int. Thus, the int type holds only whole numbers, but it takes up less space, the arithmetic is usually faster, and it uses caches and data transfer bandwidth more efficiently than the other types.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.