New 'n' Improved comp.lang.c FAQ List

Dan Bernstein brnstnd at kramden.acf.nyu.edu
Thu Apr 4 13:18:24 AEST 1991


In article <11742 at dog.ee.lbl.gov> torek at elf.ee.lbl.gov (Chris Torek) writes:
> 		static char retbuf[sizeof(XQUOTE(INT_MIN))];

Or, for those of us who can't remember how sizeof works:

  static char retbuf[] = XQUOTE(INT_MIN);

---Dan



More information about the Comp.lang.c mailing list