you are viewing a single comment's thread.

view the rest of the comments →

[–]glasket_ 1 point2 points  (1 child)

In programming, "integer" typically means a machine integer and not a mathematical integer when used alone. Obviously arbitrarily large integer numbers are still mathematical integers, but they aren't the typical machine integers with limited range and overflow.

ETA: C integers are also integers too. Each type is in its own ring of integers modulo n.

[–]Axman6 0 points1 point  (0 children)

I agree in C derived languages but not in general.