home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-ASM_VI.ARJ
/
PROGC.ZIP
/
PROGC030.C
< prev
next >
Wrap
Text File
|
1988-05-25
|
467b
|
13 lines
/************************************************************************/
/* Determine primary adapter and print it */
/************************************************************************/
print_primary()
{
static char *list[] = {"Undefined","EGA/VGA","CGA","MDA/Hercules"};
int type;
type = get_primary();
printf("\n%s is the primary adapter", list[type]);
}