When converting a float value to an int value, in case of overflow, we get max negative int. For example in: a% = 40000.1 `a%` would get -32768. The following would cause an overflow error however: a% = 40000
When converting a float value to an int value, in case of overflow, we get max negative int. For example in:
a%would get -32768. The following would cause an overflow error however: