explicit type conversion is done by compile automatically
for example:
int x;
float y=10.4545
// to convert the value of float into int type we use
x=y; //automatic conversion
while if we force to convert one data type to another then it is called implicit
for example:
int x;
float y=10.4545
// to convert the value of float into int type we use
x= (int)y; //forced conversion
Copyright © 2026 eLLeNow.com All Rights Reserved.