home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MISC
/
EDUCATIO
/
STAGES12.ZIP
/
TEST1.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-03-12
|
215 b
|
13 lines
#include <stdio.h>
#include <ctype.h>
main()
{
char cc;
while (1) {
printf(" input a character ==> ");
scanf("%c", &cc);
printf("\n ascii code of char = %d\n", toascii(cc));
}
}