"1/10" means "1 divided by 10", which would be an integer divide since both operands are integers. Hence the expression 1/10 equals zero, at least in many programming languages.
Let's assume you're talking about floating-point 1 / floating-point 10. In which case the result is 0.1, which is the same as your original literal 0.1.
Owing to peculiarities of how floating point division is implemented, however, the two values might not be identical. That is, the assertion
1.0 / 10.0 == 0.1
can be false in certain environments due to rounding errors or the way floating point division was implemented by the developers of the environment.
I don't remember the specific values involved, but early versions of Microsoft Excel suffered from this very problem, allegedly owing to the fact that the team that developed the arithmetic operations (+, -, *, /) was separate from the team that developed relational operations (==, <>, >, <).