Seems like Monkey C has issue with simple arithmetic....
See these two screen shots....
Seems like Monkey C has issue with simple arithmetic....
See these two screen shots....
That's a limitation of floating point math in general, not unique to Monkey C or Garmin devices.
e.g. Try it in Chrome:
1) Open the developer console: CTRL-SHIFT-J (Windows) / Option-CMD-J (Mac)
2) Type "67.2 * 6" (Javascript uses double precision floating point numbers)
Thanks. I guess it's a trade off between performance and accuracy.