Sobes.tech
Junior

What are the maximum and minimum values of int32 and int64 types?

sobes.tech AI

Answer from AI

  • int32: from -2,147,483,648 to 2,147,483,647
  • int64: from -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807

These values correspond to the range of numbers that can be represented by 32-bit (for int32) and 64-bit (for int64) signed integers.