difference between implicit and explicit type conversion (minimum 3 PTS)
Answers
Answer:
Read it carefully
Explanation:
Implicit
Implicit type casting is performed by the compiler on its own when it encounters a mixed data type expression in the program. it is also known as automatic conversion as it is done by compiler without programmer’s assistance. implicit casting doesn’t require a casting operator.
Explicit
Explicit type casting is performed by the programmer. In this type casting programmer tells compiler to type cast one data type to another data type using type casting operator. but there is some risk of information loss is there, so one needs to be careful while doing it.
Hope it will help u friend!
Answer:
expicit type conversion is another way of type conversion in which tge data type gets converted to another type depending upon tge users choice
implicit type conversion --- in a mixed expression the data type of the result gets automatically converted into an higher most type available in the expression without any intervention of the user this is known as implicit type conversion or coercion