home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: DFÜ und Kommunikation
/
SOS-DFUE.ISO
/
programm
/
dos
/
utility
/
pccp076
/
ccodes.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-04-29
|
399 b
|
32 lines
#include<stdio.h>
#include<graph.h>
main()
{
char str[16];
int i;
for(i=0;i<256;++i)
{
if(!(i%16))
{
sprintf(str, "\n");
_outtext(str);
}
else
{
sprintf(str, " ");
_outtext(str);
}
if((i!=10)&&(i!=13))
{
sprintf(str, "%02x>%c", i, i);
_outtext(str);
}
else
{
sprintf(str, " ");
_outtext(str);
}
}
}