Hi there,
I (as a noob) have a basic question:
x = typemax(Int32)
x = x + 1
typeof(x)
i get Int64. So we go from Int32 to Int64
y = typemax(Int64)
y = y + 1
y now is -9223372036854775808
Why we cannot go to Int128? Does this depend on the system architecture?
Thx
6 posts - 3 participants