So, I'm trying to shift the comma of an int/long like 37800 by dividing it by e.g. 1000, and saving this then into a float.
float shift;
shift = 37800/1000;
As a result I get 37.0
in this example.
What is happening there? Why do they get deleted?