X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: f996b,2223f16abd587bcf X-Google-Attributes: gidf996b,public X-Google-ArrivalTime: 2002-01-22 12:10:07 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news-ge.switch.ch!newsfeed.sunrise.ch!news.sunrise.ch!not-for-mail Message-ID: <3C4DC544.60404@gmx.ch> Date: Tue, 22 Jan 2002 21:02:12 +0100 From: Matthias Herrmann User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.1) Gecko/20010607 X-Accept-Language: de-ch, en-us MIME-Version: 1.0 Newsgroups: alt.ascii-art Subject: Re: [maybe OT] References: <6k%28.23888$ly.772015@twister1.libero.it> <533p4u0d0hpatvngq1h775f85jg23p3994@4ax.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Lines: 42 NNTP-Posting-Host: 194.230.201.80 X-Trace: 1011729985 newsfeed.sunrise.ch 751 194.230.201.80 Xref: archiver1.google.com alt.ascii-art:13981 drsquare wrote: > On Mon, 21 Jan 2002 21:00:50 GMT, in alt.ascii-art, > ("Rat Man" ) wrote: > > >>where may I find a ASCII chars map? >> > > Do one yourself. This simple C program will suffice: > > #include > > int main() > { > int c; > for(c = 31; c < 128; c++) > { > printf("%d : %c", c, c); > } > printff("\n"); > return 0; > } > > I would be better like this: #include int main(void) { int c; for(c = 0; c < 256; ++c) { printf("%d : %c \n", c, c); } return 0; } I don't know but this shows the whole ASCII-code from 1-127 (standard) and the rest too--- Hermi