Computer Science, asked by rajeshwarisingh4606, 10 months ago

Which field size in number data type is used to accept decimal values

Answers

Answered by prashantrohilla32
0

Answer:

double

Explanation:

double can accept decimal values.

double z=12123.435;

if you use other data type like int,long,float;

it give error.

incompatible types: possible lossy conversion from double to int

                                 possible lossy conversion from double to float

                                 possible lossy conversion from double to long

Similar questions