Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!iuvax!bobmon From: bobmon@iuvax.cs.indiana.edu (RAMontante) Newsgroups: comp.lang.c Subject: Re: TurboC graphic Symbols Message-ID: <23007@iuvax.cs.indiana.edu> Date: 7 Jul 89 02:17:08 GMT References: <3906@peora.ccur.com> Reply-To: bobmon@iuvax.cs.indiana.edu (RAMontante) Organization: malkaryotic Lines: 16 The simple graphics symbols you're referring to are just the way the CGA graphics adapter displays the "nonprinting" ASCII characters --- that is, values less than 32 or greater than 127 (decimal). (The graphics symbols assume that you aren't using any ANSI driver.) You can see what your system will do by writing a simple program that just displays each value: #include int main(void) { int i; for (i = 0; i <= 255; i++) printf("value %3d >>%c<<\n", i, i); return 0; }