- chars in 'C' are used to represent characters.
- Numbers representing characters in all code pages are always positive.
What is the use of having signed characters?? Are negative values contained in chars used only as integral values in a smaller integral data-type than int and short?? Do they have no other interpretation??(like positive values in chars representing characters)
Not always, chars are used to represent bytes, they are the only type in c with a known size.