
please wait
128U
makes it unsigned int
, 128UL
makes it unsigned long
, etc. What suffix will make it an unsigned char
?
char
, signed char
and unsigned char
. The default type for that would be char
, whether that is signed or unsigned depends on the compiler ( which may have some option to change the default behaviour ).unsigned char
you'll have to explicitly cast it.