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

link|improve this question
1  
The one C reference book I trust is Harbison & Steele's "C: A Reference Manual" (careferencemanual.com). Of course the standard is the final word, but it's not very readable and only gives the slightest information on pre-standard and common (ie., POSIX) uses that are outside the standard. Harbison & Steele is quite readable, detailed and probably more correct than most references. However it also isn't a tutorial, so if you're in the initial stages of learning it's probably not a great thing to jump into. – Michael Burr Jan 13 '10 at 7:02
1  
I think the book you are reading is C: The Complete Reference, by Herbert Schildt. From a review of this book (accu.informika.ru/accu/bookreviews/public/reviews/c/c002173.htm): I am not going to recommend this book (too many of you give too much weight to my opinions) but I do not think it deserves the same opprobrium that has been legitimately thrown at some of his other work. As Michael says, a much better reference is Harbison & Steele. – Alok Jan 13 '10 at 7:14
feedback

3 Answers

up vote 20 down vote accepted

The book is wrong. The standard does not specify if plain char is signed or unsigned.

In fact, the standard defines three distinct types: char, signed char, and unsigned char. If you #include <limits.h> and then look at CHAR_MIN, you can find out if plain char is signed or unsigned (if CHAR_MIN is less than 0 or equal to 0), but even then, the three types are distinct as far as the standard is concerned.

link|improve this answer
1  
@Alok: the same is not true for some other datatypes, for example int means signed int always, right? Apart from char, what other datatypes have the same confusion in C? – Lazer Mar 28 '10 at 11:15
3  
@eSKay: yes, char is the only type that can be signed or unsigned. int is equivalent to signed int for example. – Alok Mar 29 '10 at 0:54
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 -funsigned-char. You can also explicitly ask for signed characters with -fsigned-char.

On MSVC, the default is signed but you can modify that with /J.

link|improve this answer
1  
Interesting that Schildt's description doesn't match MSVC's behavior since his books are usually geared toward MSVC users. I wonder if MS changed the default at some point? – Michael Burr Jan 13 '10 at 7:17
I thought it wasn't dependent on the compiler, but on the platform. I thought char was left as a third type of "character datatype" to conform to what the systems at that time used as printable characters. – Spidey May 9 at 19:45
feedback

The standard has this to say about the signed-ness of type char:

The implementation shall define char to have the same range, representation, and behavior as either signed char or unsigned char.

and in a footnote:

CHAR_MIN, defined in <limits.h>, will have one of the values 0 or SCHAR_MIN, and this can be used to distinguish the two options. Irrespective of the choice made, char is a separate type from the other two and is not compatible with either.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.