0340. What is the difference between
signed and unsigned integers (and characters)? What is the default?
Unsigned
integers and characters can only take-on non-negative (zero or greater) values.
Signed
characters and integers can take-on both negative and non-negative values.
By default, characters and integers
are signed (i.e., declaring
something as either a character or an integer without an adjective in front of
it)