+ 4
Why unsigned char data type range is between 0 and 255?
Why unsigned char data type range is between 0 and 255?
1 Odpowiedź
+ 4
Unsigned -> only positive values
sizeof(unsigned char) is 1 byte
hence the values of an unsigned char vary between 0 and (2^8 - 1)