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