char
acter = 1 octet = {'a','0',...}short
value = 2 octetsint
eger = 4 octetslong
value = 8 octetsshort
, int
and long
can have an unsigned
modifier(Sample code)
int
, short
or long
(and also char
!)Nb. int
egers also represents boolean values: 1=true, other=false.