plz answer and help me for my test.
Attachments:
Answers
Answered by
0
Answer:
double a =5.3;
float b=a;
is incorrect
Explanation:
double a =5.3;
float b=a;
is incorrect because double storage size is 8 byte which bigger than float storage size 4 byte. hence it cannot perform initialization
Similar questions