+ 1
What is type casting?
2 RĂ©ponses
0
I have no idea what language youâre speaking in ha
+ 3
Turn a value from one type to another.
int my_int = 4;
float my_float = my_int;
Here a typecast from int to float just happened. Depending on what language you are talking about, typecasts can happen in lots of different ways.