Computer Science, asked by srushtigaikwad78, 5 months ago

double a=5.3; float b=a;

Answers

Answered by YUVILOVE2009
1

Answer:

ALL numbers can be represented using a finite precision (32-bit float or 64-bit double ). You need to treat integers and Floating-point numbers as two DISTINCT types in programming! Use integer if possible (it is faster ...

Similar questions