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

  1.  
  2. /************************************************************************/
  3. /* Get cursor position and print it on the screen                       */
  4. /************************************************************************/
  5.  
  6. print_cursor_pos()
  7.         {
  8.         int     row, col;
  9.         get_cursor_position(&row,&col);         /* Get position         */
  10.                                                 /* Print it             */
  11.         printf("\nCursor row and column are %d %d", row, col);
  12.         }
  13.