What will be the maximum size of a double variable?
2 points
a) 1 byte
b) 4 bytes
c) 8 bytes
d)16 bytes
Answers
Answered by
0
Answer:
what will be the maximum size of a double variable, the answer of this question is( B, 4 bytes)
Answered by
1
C) 8 bytes will be the maximum size of a double variable.
Double data type size :
- A double is a data type in the C programming language for storing high-precision flying data or integers in computer memory.
- Even though it can hold twice as much data as a float data type, it's called a double data type. A double is made up of eight bytes, which equals 64 bits.
- The syntax for declaring a double is as follows:
Datatype Variable = Value; ⇒ double data1 = 3.2325467;
Similar questions