how many bits long long int take

Solutions on MaxInterview for how many bits long long int take by the best coders in the world

showing results for - "how many bits long long int take"
Maria
21 Oct 2019
1The minimum size for char is 8 bits, the minimum size for short and int is 16 bits, for long it is 32 bits and long long must contain at least 64 bits. The type int should be the integer type that the target processor is most efficiently working with. This allows great flexibility: for example, all types can be 64-bit.