In C/C++, what an unsigned char is used for? How is it different from a regular char?
unsigned char
char
unsigned char takes only positive values....like 0 to 255
where as
signed char takes both positive and negative values....like -128 to +127
signed char