+ 1
What is type casting?
2 Antworten
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.