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 >
Wrap
Text File
|
1988-04-10
|
518b
|
13 lines
/************************************************************************/
/* Get cursor position and print it on the screen */
/************************************************************************/
print_cursor_pos()
{
int row, col;
get_cursor_position(&row,&col); /* Get position */
/* Print it */
printf("\nCursor row and column are %d %d", row, col);
}