Define Implicit type conversion with an example.
2 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
1 Like
Define Explicit type conversion with an example.
What do you understand by type conversion?
Explain the need to use suffix L in a long type data.
What is meant by boolean type data? Explain with an example.