TOPIC 5.3.1
Typecasting
Typecasting is the automatic conversion from one data type to another data type.
typecast(variable or expression) (typecast)variable or expression
datatype1 = datatype2
float a, b; int c, d; a = float(c + 10) + .1; b = (float)c + 10 + .1;
c = a * .25;