home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGC.ZIP
/
PROGC056.C
< prev
next >
Wrap
Text File
|
1988-05-25
|
433b
|
13 lines
/************************************************************************/
/* Read first ten characters at the top of the screen */
/************************************************************************/
print_10_chars()
{
int i;
printf("\Characters read are (in hex): ");
for (i = 0; i < 10; i++)
printf("%2X ",read_character(0, i));
}