36
votes
Why use boolean instead of char?
It is a question of memory alignment. 4-byte variables work faster than 2-byte ones. This is the reason why you should use int instead of byte or short for counters and the like.
You shou …
3
votes
Should a buffer of bytes be signed or unsigned char buffer?
Do you really care? If you don't, just use the default (char) and don't clutter your code with unimportant matter. Otherwise, future maintainers will be left wondering why did you use signed (or …
