Define Implicit type conversion with an example.
6 Likes
In implicit type conversion, the result of a mixed mode expression is obtained in the higher most data type of the variables without any intervention by the user. Example:
int a = 10; float b = 25.5f, c; c = a + b;
Answered By
2 Likes
Write down the Data type of the following:
(a) Integer
(b) Long Integer
(c) A fractional number
(d) A special character
What do you understand by Boolean type data ? Explain with an example.
Define Explicit type conversion with an example.
Define Literals with an example.