The Cast Operator
The cast operator converts explicitly from one data type of an expression to another. For example, if x is of type int, the value of the expression
is the original value of x converted to float. The type and value of x are unchanged.
If x = 3, then (float) x is 3.00000.