Define Explicit type conversion with an example.
10 Likes
In explicit type conversion, the data gets converted to a type as specified by the programmer. For example:
int a = 10; double b = 25.5; float c = (float)(a + b);
Answered By
6 Likes
What do you understand by Boolean type data ? Explain with an example.
Define Implicit type conversion with an example.
Define Literals with an example.
Define Identifiers with an example.