A alextretyak Administrator Staff member 17 Mar 2019 #2 In favor of 32 bits: 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). Economy and sufficiency. In the vast majority of situations, 32 bits are quite enough.
In favor of 32 bits: 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). Economy and sufficiency. In the vast majority of situations, 32 bits are quite enough.