Subj : Re: Non-strictly-conforming and unspecified versus undefined behavior To : comp.programming.threads,comp.std.c From : Chris Croughton Date : Fri Feb 18 2005 10:23 am On Fri, 18 Feb 2005 09:24:56 GMT, David Hopwood wrote: > David Hopwood wrote: >> puts(((char) -1) < 0 ? "char is signed" : "char is unsigned"); > [...] >> puts(((char) -1) < 0 ? "char is unsigned" : "char is signed"); > > All these strings should have had \n at the end. There's no need, puts() outputs a newline after the string. Chris C .