Size of Int built-in type

?

  • 32 bits

    Votes: 0 0.0%
  • 64 bits

    Votes: 0 0.0%

  • Total voters
    1

alextretyak

Administrator
Staff member
In favor of 32 bits:
  1. Compatibility. Integer literals in C/C++ are treated as 32 bits (e.g. auto i = 0;, then type of i is int, which is 32 bits on most platforms).
  2. Economy and sufficiency. In the vast majority of situations, 32 bits are quite enough.
 
Top