home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / WINCLIP / EXAM128.C < prev    next >
C/C++ Source or Header  |  1993-12-01  |  249b  |  11 lines

  1.   #include "window.h"
  2.  
  3.   main()
  4.   {
  5.     int row,col;
  6.     MoveCursor(10,15);
  7.     GetCursorPosition(&row,&col,0);
  8.     WindowInitializeSystem();
  9.     VideoPrintf("\nThe row of the cursor is %d\nThe column is %d",
  10.                  row,col);
  11.   }