Subject: Re: Chars
To: Robert Black <r.black@ic.ac.uk>
From: J.T. Conklin <jconklin@netcom.com>
List: current-users
Date: 03/24/1995 13:19:32
> 
> Are chars *supposed* to be signed or unsigned by default?
> 

In what context?  A C implementation can be have either as default.  I
believe that GCC uses signed chars on most platforms.

If you need particular semantic, use the "signed" or "unsigned"
qualifiers explicitly.

	--jtc