Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!cs.utexas.edu!tut.cis.ohio-state.edu!ucbvax!hplabs!hp-pcd!hplsla!jima From: jima@hplsla.HP.COM (Jim Adcock) Newsgroups: comp.lang.c++ Subject: "Signed" Implemented Yet? Message-ID: <6590193@hplsla.HP.COM> Date: 10 Jul 89 21:48:33 GMT Organization: HP Lake Stevens, WA Lines: 18 Is "signed" implemented on any compilers yet? Isn't this necessary to guarantee proper working of "signed char" as a tiny int? [I have a class that could use lots of tiny ints] #include main() { signed char sc = -1; unsigned char uc = -1; char c = -1; signed short ss = -1; unsigned short us = -1; short s = -1; printf("%x %x %x\n",sc,uc,c); printf("%x %x %x\n",ss,us,s); }