Range Of Int

[Solved] Range Of Int | C - Code Explorer | yomemimo.com
Question : how maany bytes in an int in C

Answered by : better-baboon-e62p199b00ge

 [8-bit] signed char: -127 to 127 [8-bit] unsigned char: 0 to 255 [16-bit]signed short: -32767 to 32767 [16-bit]unsigned short: 0 to 65535 [32-bit]signed long: -2147483647 to 2147483647 [32-bit]unsigned long: 0 to 4294967295 [64-bit]signed long long: -9223372036854775807 to 9223372036854775807 [64-bit]unsigned long long: 0 to 18446744073709551615

Source : https://stackoverflow.com/questions/11438794/is-the-size-of-c-int-2-bytes-or-4-bytes | Last Update : Wed, 11 Nov 20

Answers related to range of int

Code Explorer Popular Question For C