Mail Archives: djgpp/1997/06/02/18:36:47
From: | Jeff Weeks <pweeks AT execulink DOT com>
|
Newsgroups: | comp.os.msdos.djgpp
|
Subject: | Re: ASCII code table
|
Date: | 2 Jun 1997 21:00:31 GMT
|
Organization: | Code X Software
|
Lines: | 31
|
Message-ID: | <5mvc9f$dib@nr1.toronto.istar.net>
|
References: | <5mtboh$mu8 AT crcnis3 DOT unl DOT edu>
|
NNTP-Posting-Host: | ppp2.io.execulink.com
|
Mime-Version: | 1.0
|
To: | djgpp AT delorie DOT com
|
DJ-Gateway: | from newsgroup comp.os.msdos.djgpp
|
Jisan Yang wrote:
>
> Hello.
> I am looking for ASCII code table ASAP.
> Whoever happen to have ASCII table, please send me the text file.
> I will appreciate your help.
> Email: jiyang AT unlgrad1 DOT unl DOT edu
Do you run DOS? Most likely since you using DJGPP...
So, just load up QBasic. Goto help | contents, and click on the ascii
table option. It's all there, an 8-bit ascii table. If you print it, I
suggest you only print character 32 an on, or else your printer will
misintrepret your intentions :)
Ofcourse, if you we're a real programmer you'd do it this way...
for(char letter = 0; letter < 256; letter++) {
cout << letter;
:)
Jeff
--------------------------------------------
- Code X Software -
Programming to a Higher Power
email: mailto:pweeks AT execulink DOT com
web: http://www.execulink.com/~pweeks/
--------------------------------------------
- Raw text -