difference between implicit type conversation and explicit type conversation
Answers
Answered by
6
Answer:
The basic difference between implicit and explicit type casting is that implicit is taken care of by the compiler itself, while explicit is done by the programmer. ... In the above statement, the conversion of data from int to double is done implicitly, in other words programmer don't need to specify any type operators.
Answered by
12
Answer:
Answer:1.Implicit conversion is used to convert(or store) a value of lower data type into a larger datatype,
2. User intervision is not necessary,
3.Does not result in loss of data,
Whereas,
1.Explicit conversion is used to conver a value of higher datatype into a lower datatype value,
2.User intervision is necessary
3. May result in the loss of data.
Explanation:
Similar questions