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 >
Text File  |  1988-05-25  |  433b  |  13 lines

  1.  
  2. /************************************************************************/
  3. /* Read first ten characters at the top of the screen                   */
  4. /************************************************************************/
  5.  
  6. print_10_chars()
  7.         {
  8.         int     i;
  9.         printf("\Characters read are (in hex): ");
  10.         for (i = 0; i < 10; i++)
  11.                 printf("%2X ",read_character(0, i));
  12.         }
  13.