what is the purpose of signed char if both char and signed char ranges from -127 - 127? what is the place where we use signed char instead of just char?
unsigned char
is unsigned.
signed char
is signed.
char
may be unsigned or signed depending on your platform.
Use signed char
when you definitely want signedness.
Possibly related: What does it mean for a char to be signed?
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With