home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / C-ASM_VI.ARJ / PROGC.ZIP / PROGC032.C < prev    next >
Text File  |  1988-05-25  |  445b  |  13 lines

  1.  
  2. /************************************************************************/
  3. /* Determine if there is a second video adapter in the system           */
  4. /************************************************************************/
  5.  
  6. print_if_second()
  7.         {
  8.         if (get_second_adapter())
  9.                 printf("\nSecond adapter is present");
  10.         else
  11.                 printf("\nEGA/VGA is the only adapter present");
  12.         }
  13.