+ 1
What is a double variable
7 ответов
+ 7
Double is a data type for decimal numbers.
Example:
double PI = 3.14159265359;
+ 3
cananyone give me an example?
+ 2
Double variable is one of the fundamental C++ datatype that can store very large data and occupies 8 bytes in the memory
0
Thanks guys
0
what is std
0
It's a data type to represent floating point numbers with “double“ precision relative to float. Float uses 32 bit to represent numbers, double uses 64 bit. You might be interested in looking up their data ranges and how the numbers are represented in memory.
- 2
double mobile=9876543210;