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

  1.  
  2. /************************************************************************/
  3. /* Print 'Hello' in the middle of 80x25 screen                          */
  4. /************************************************************************/
  5.  
  6. print_hello()
  7.         {
  8.         clear_screen();
  9.         write_string(12, 40, "Hello");          /* Display a string     */
  10.         }
  11.