In the book "Complete Reference of C" it is mentioned that char is by default unsigned.
But i am trying to verify this with GCC as well as visual studio. It is taking it as signed by default.
which one is correct
feedback
|
|
The book is wrong. The standard does not specify if plain In fact, the standard defines three distinct types: | |||||||||
feedback
|
|
As Alok points out, the standard leaves that up to the implementation. For gcc, the default is signed, but you can modify that with On MSVC, the default is signed but you can modify that with | |||||||
feedback
|
|
The standard has this to say about the signed-ness of type
and in a footnote:
| |||
|
feedback
|