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

  1.  
  2. /************************************************************************/
  3. /* Display three consecutive characters starting at the end of the      */
  4. /* 80x25 screen                                                         */
  5. /************************************************************************/
  6.  
  7. write_one_char()
  8.         {
  9.         write_char('A', 24, 40);               /* First character      */
  10.         write_char('B', 24, 41);               /* Second character     */
  11.         write_char('C', 24, 42);               /* Third character      */
  12.         }
  13.