What’s the difference between long long and long
Going by the standard, all that’s guaranteed is: int must be at least 16 bits long must be at least 32 bits long long must be at least 64 bits On major 32-bit platforms: int is 32 bits long is 32 bits as well long long is 64 bits On major 64-bit platforms: int is … Read more